Perhaps a silly question but if you are not currently logged in to Facebook and you click "Like" button, a pop-up window comes up asking you to login. Once you have entered details, the window is automatically closed but the "Like" button is not updated (e.g. counter is not incremented). So you need to click the button again to like page.
JS code as follows:
window.fbAsyncInit = function() {
FB.init({
status: true,
cookie: true,
xfbml: true,
channelUrl: "http://www.mydomain.co.uk/channel.html"
});
};
(function($){
// Async loading of all.js
var e = document.createElement('script');
e.async = true;
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
})(jQuery);
HTML for like button:
<div class="fb-like" data-send="false" data-layout="button_count" data-width="100" data-show-faces="false" data-href="http://www.mydomain.co.uk/article2.html">
</div>
I used APPID allowing me to check the auth status of user but still same result. I do have all the necessary OG meta tags.
Am I missing something? Or do I need a different approach?
Many thanks in advance!