Reputation: 11609
I put an facebook like iframe related to each post of some webpage as so
<iframe src="http://www.facebook.com/plugins/like.php?href={$post_url}&
layout=button_count&show_faces=false&width=90&action=like&
font=verdana&colorscheme=light" allowtransparency="true" style="border:
medium none; overflow: hidden; width: 90px; height: 21px;" frameborder="0"
scrolling="no"></iframe>
The count works well but when clicking the like button, no popup is showed to enter a message. Could someone explain ? (my site uses an app facebook, and there are og meta for each page, could that causes problem ?)
Upvotes: 2
Views: 18874
Reputation: 96151
https://developers.facebook.com/docs/reference/plugins/like/:
“send - specifies whether to include a Send button with the Like button. This only works with the XFBML version.”
So you will have to embed your like buttons using the JavaScript SDK instead of the iframe version if you want to have the send button.
Upvotes: 2