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 added a like button in a facebook application (not iframe in order to capture the liked evenment...), and when a user click on like, then he has the possibility to add a comment to the like.

I want to hide/remove this possibility to adda comment when he click on like.

Do you know if it's possible and how to do that?

Thanks

share|improve this question

2 Answers

Set a fixed height and overflow hidden on the div that contains your like button so that it is hidden after the user clicks 'like'.

share|improve this answer

I added these CSS classes to my css file and it got rid of the comment box for me.

.fb_edge_widget_with_comment .fb_edge_comment_widget .fb_ltr {
display: none !important;
}
share|improve this answer

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.