I've implemented the Like button so many times before but for some reason I'm stuck on this one. I am simply trying to include a like button and nothing else.
It is working fine, when you press the button, all data is pushed to Facebook and it appears in your Likes, but if you refresh the page you liked, the count displayed resets and goes back to 0.
Any idea as to what could be causing this would be a great help!
I've included the SDK as told, and I've added my APP ID (another post had the missing APP ID as a problem solver, but not this time):
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '393548934045727', // App ID
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
// Additional initialization code here
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
</script>
<div class="fb-like" data-href="{Permalink}" data-send="false" data-layout="box_count" data-width="200" data-show-faces="false"></div>