tags:

views:

225

answers:

1

Problem on facebbok like button html :

Facebook is showing here

That you can add a like button to your site that allows users to also add a comment right after clicking on the "LIKE" button.

From some reason, when I try that html on my site, it doesn't work.

My site is public and I also got the required META tags inside my html.

Help, anyone ?

+2  A: 

Commenting currently only works with the XFBML version:

<fb:like></fb:like>
<script src="http://connect.facebook.net/en_US/all.js"&gt;&lt;/script&gt;
<script>
  FB.init({ appId: 'YOUR APP ID', xfbml: true });
</script>

Or starting Wednesday (new feature not yet released) the simpler version:

<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"&gt;&lt;/script&gt;
<fb:like></fb:like>

NOTE: You only need one set of the script tags, and you can add as many <fb:like> or other XFBML widgets after that.

daaku
Hey. I used that method, but still it doesn't open the rollover for adding a comment. Do I need to set a flag for that?
Yos

related questions