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'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.

share|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

11 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 :)

share|improve this answer
You are the best! Thanks! – Jonathan Clark Feb 4 '12 at 14:53
Worked like a charm! – andrhamm Feb 16 '12 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 '12 at 10:45
3  
Doesn't anyone think BrynJ answer may be best? If facebook changes their classes in the markup, this method will break. – tybro0103 Mar 7 '12 at 2:53
1  
This didn't work for me as of Feb 12 2013. Had to use Kotzilla's solution – Bashevis Feb 13 at 1:37
show 4 more comments
up vote 43 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.

share|improve this answer
2  
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 '12 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 '12 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 '12 at 16:31
@tybro0103, i added a method that will not break even if FB change their classes – Barjas Jun 18 '12 at 20:33
This worked perfectly for me, thank you @BrynJ – Zander Oct 17 '12 at 11:55
show 1 more comment

i use this in my css

.fb-like{
    height: 20px;
    overflow: hidden;
}

and reder the facebook button with the normal html5 code, something like this:

<div class="fb-like" data-layout="button_count" data-show-faces="false"></div>

gr-

share|improve this answer
2  
After trying out the other solutions, this one worked best. Iframe not suitable because I need to subscribe to edge.create event. Re-rendering the div tag in the edge.create event handler had a bit of a lag to it. The other CSS solution using ".fb_edge_widget_with_comment span.fb_edge_comment_widget iframe.fb_ltr" didnt work for me either. – opadilla Mar 19 at 16:37
This is the only one that worked for me too. I am using the non iframe like embed method. – TK123 May 1 at 21:06

I like Mohammed Arif solution.. and i choose it as the best answer .. but in case FB changed classes, then the below will always work..

FB.Event.subscribe('edge.create', function(response) {
   $('#like_button_holder').html('<div class="fb-like" data-href="http://www.your-url.com" data-send="false" data-layout="button_count" data-width="50" data-show-faces="false"></div>')
   FB.XFBML.parse();
});

where "like_button_holder" is "YOUR" div id holding the facebook like button code

share|improve this answer
2  
I've used this solution because with css styles I can't hide a div inside an iframe. – Pons Jan 21 at 11:03
Same for me as @Pons – Brian Jan 22 at 17:50

What I did is crate a div for the "like" button like this:

<div class="fb_like">
  <fb:like href="yourlink" send="false" layout="button_count" width="90" show_faces="false" font="arial"></fb:like>
</div>

And this is the CSS :

.fb_like {  
  overflow: hidden;
  width: 90px;
}
share|improve this answer
This one works, just fine! – Wesley Lachenal Mar 24 at 8:32

I couldn't get the display: none option to work with the HTML 5 version of the button. Instead I targeted the div that the like button button is created in and set the overflow to hidden.

Dropping the following in my main css file did the trick:

#fb_button{
    overflow:hidden;
}
share|improve this answer

Agree with BrynJ, best solution currently is to put the like button in a 20px high div container, and set the overflow to hidden (I read somewhere that FB recently moved the comment flyout into the iFrame, so the solution that modifies the styling of .fb_edge_widget_with_comment is probably not useful anymore for iFrame users).

Using AddThis? Do this:

<div class="container" style="height: 20px; overflow: hidden;">
  <div class="addthis_toolbox addthis_default_style">
    <a class="addthis_button_facebook_like"></a>
  </div>
</div>
share|improve this answer
Can confirm that the 20px div container solution is the only working one. – Bashevis Feb 13 at 1:37

Hiding the comment box work but can create problem if you have clickable element behind the comment flyout box.

You have to hide it and remove it from the DOM post like.

Here is the CSS to hide the comment box:

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

Here is the JQuery way of removing the DOM element:

 FB.Event.subscribe('edge.create', function (href, widget) {        
    $('.fb_edge_comment_widget.fb_iframe_widget').remove()       
});

Here is the pure javascript way using provided widget from the callback:

FB.Event.subscribe('edge.create', function (href, widget) {
    widget._commentWidgetNode.parentNode.removeChild(widget._commentWidgetNode);        
});
share|improve this answer

Lets try this one:

FB.Event.subscribe('edge.create', function(response) {
    var $parent =  $('[href="'+response+'"]').parent();
    $parent.empty();
    $parent.html('<fb:like href="'+response+'" send="false" layout="button_count" width="120" show_faces="false" action="like"></fb:like>');
    FB.XFBML.parse();
 });
share|improve this answer

The overflow height options mentioned above shouldn't be used when show-faces=true. Otherwise, it will hide the faces.

share|improve this answer

Not to be a Debby Downer here, but doesn't hiding the comments box violate Facebook Policy?

IV. Application Integration Points d. You must not obscure or cover elements of our social plugins, such as the Like button or Like box plugin.

https://developers.facebook.com/policy/

share|improve this answer
That doesn't provide an answer to the question. Please additional remarks as a comment. – Trinimon May 17 at 20:46

Your Answer

 
discard

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

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