So, I installed the WP Google Plus Connect plugin, v 1.0.5.1. When I go to the settings page of the plugin, however, what I see is 
The settings page is not displayed.
I use WordPress v 3.1.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Problem solved for version 1.0.5.1.
In
admin.phpin the plugin directory, on line 60, remove the-->from the end.Then, create a new line between line 60 and 61 and place the
-->there.Explanation
This is a simple HTML mistake. The author seems to had wanted to temporarily remove some setting pages from view. So, he starts an HTML comment on line 58. Then, he checks whether the function named
wds_bp_checkexists, and if so, outputs another commented out link, and closes the HTML comment.The problem is that if the function wds_bp_check does not exist, the HTML comment is not closed, and continues throughout the rest of the page, until it hits another
-->. Thus, the settings pages are there, but are invisible. Close the comment in the appropriate place, and everything should be fixed =)