Reputation: 15984
I have a site with a facebook like button (using iframe). when a user clicks there's a small popup and the user can enter text.
I have another site with exactly the same code, but when the users likes there is no popup to enter text...
How is that?
This is the code:
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.xxxxxxxx.org&send=false&layout=button_count&width=450&show_faces=false&action=recommend&colorscheme=light&font&height=21&appId=xxxxxxx" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:21px;" allowTransparency="true"></iframe>
Upvotes: 1
Views: 170
Reputation: 11385
From the documentation at http://developers.facebook.com/docs/reference/plugins/like/
When will users have the option to add a comment to the like?
If you are using the XFBML version of the Like button, users will always have the option to add a comment. If you are using the Iframe version of the button, users will have the option to comments if you are using the 'standard' layout with a width of at least 400 pixels. If users do add a comment, the story published back to Facebook is given more prominence.
Upvotes: 1