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 can't figure this problem out, what am i doing wrong? When i click on my like button, i want the information to be sent to the persons wall, i've seen this been done many times. However, when i click my like button, a comment box pops up, and i need to fill it out, then send it to my facebook wall, how can i get rid of this?

Image showing my problem,

Facebook comment problem

My code looks like this,

<fb:like href="MY_URL" send="false" layout="button_count" width="450" show_faces="false" font="tahoma"></fb:like>

Thanks for any help!

share|improve this question

1 Answer

When someone clicks the like button, it sends it to the facebook wall like you want it too. The comment box that pops up simply allows users to add a comment to the "like". If someone adds a comment in addition to pressing the like button, the post is treated with more importance by facebook (IE will show up higher on other people's news feeds etc). If you do not want the comment box to pop up (which I don't know why you wouldn't...) use the iframe like button instead of the XFBML like button.

share|improve this answer
The iframe version shows this box as well. To sort the issue, I'm subscribed to the events for like and unlike and check the DOM for the presence of a second iframe. If found it gets a gift from me - display: none. :) – Nikola Petkanski Dec 16 '11 at 9:59

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.