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?