I'd like to disable the Comment box that pops up when a user clicks the Facebook (fbml) Like button I've placed on my site. Is this possible to do? I can't find any details in the documentation.

link|improve this question

1  
Couldn't find an answer for you. Have you considered the "Like Box" as a work-around? developers.facebook.com/docs/reference/plugins/like-box. You can turn off "Show Stream" and "Show Header", and set "Connections" to 0, and it makes the resulting markup reasonably sized. – zombat Jul 15 '10 at 5:19
I've added an answer I found as a workaround. – BrynJ Jul 22 '10 at 19:19
feedback

2 Answers

Simplest fix to hide the comment box after Facebook Like (XFBML version not the iframe one) is as given:

.fb_edge_widget_with_comment span.fb_edge_comment_widget iframe.fb_ltr {
display: none !important;}

Put the CSS style in any of your CSS file and see the magic, it works :)

link|improve this answer
You are the best! Thanks! – Jonathan Clark Feb 4 at 14:53
Worked like a charm! – andrhamm Feb 16 at 19:11
Thanks Jonathan though I amn't the best :) I struggled on the same and just tried out to resolve using CSS rather looking for the fancy solutions and it worked 'like a charm' :) – Mohammed Arif Feb 20 at 10:45
1  
Doesn't anyone think BrynJ answer may be best? If facebook changes their classes in the markup, this method will break. – tybro0103 Mar 7 at 2:53
Amazing there isn't any option yet, where you actually can disable the comment pop-up. Works great. – Messing Mar 27 at 5:26
show 3 more comments
feedback
up vote 7 down vote accepted

Putting the iframe in a appropriately sized div with overflow set to hidden resolved this issue - although this is only actually hiding the problem as such.

link|improve this answer
Funny to me that the other guy got all the votes. Perhaps his method saves three minutes, but if facebook changes their classes it will break. – tybro0103 Mar 7 at 2:52
@tybro You can add class to fb tag and style it, so fb changing its class won't affect your code. – Gangesh Mar 26 at 9:35
@Gangesh Um no, you can't. The markup comes directly from Facebook which you don't have control over. – tybro0103 Mar 26 at 16:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.