Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to use the facebook login button with no faces and make it disappear when im logged in already. The button should say "Connect". I tried these:

<fb:login-button show-faces="false" width="200" scope="publish_actions">Connect</fb:login-button>

The above will show the button even after the login (clicking it just make a popup to appear them immediately disappear).

<fb:login-button show-faces="true" width="200" data-max-rows="0" scope="publish_actions">Connect</fb:login-button>

The above will never show the button, even when you are not logged in yet (i think because data-max-rows="0").

Here is a test case, atm its always showing the button: http://www.talentblend.com/fb_obj.html

Anybody knows how to do it?

share|improve this question
AFAIK the login button is supposed to be displayed even when the user is already logged in. If you don’t want that, you have to “hide” it yourself: After checking, if the user is already logged in, output the button code or don’t. – CBroe Sep 24 '12 at 7:33

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.