If a user is not logged into facebook everything looks fine when they hit the drupal site. Please see this screenshot http://screencast.com/t/IyPLofMrMDR

However if they are logged into FB they are presented with this

http://screencast.com/t/fJZwfWxTIa

Now the unusual thing is that it occurs for some facebook accounts but not others. I can't explain it but I think it is if the facebook account is not verified or something.

We've tried every combination of settings for auto login and so forth and it does not change this.
Anyway I'm not sure what is going on or how we can deal with this.

CommentFileSizeAuthor
after.png299.71 KBdrutube
before.png262.91 KBdrutube

Comments

drutube’s picture

Priority: Major » Normal

I tried to reset this to 'normal' priority but can't. Its important in that we are going to have to disable FB connect untill we can figure out how to suppress this extraneous text. The frustrating thing is it is hard to reproduce as it only occurs for some Facebook accounts and not others based on a criterion we can't figure out. I believe it is the verified accounts only but not sure.

jcisio’s picture

Based on what is in code, this is expected behavior. When a user is logged in *and* has a linked Facebook account, there are more texts in the loggin block.

If you want to remove the text, override the fbconnect_login_button theme.

drutube’s picture

Then I wonder how one can suppress the text from appearing.

Thanks for your help.

matas.k’s picture

Just remove the text from fbconnect.module and don't forget to flush.

Before:
$desc = t('Login to this site using your Facebook credentials.');
After:
"$desc = t('');"

Also I think you can do the same for H3 title, or just use CSS display: none;