I have a website that sells products. On the product pages I have a FB like box that users can use to like a particular product. I have the following code in my site
<div class="fb-like" data-send="false" data-layout="button_count" data-width="450" data-show-faces="true" data-font="arial"></div>
<script type="text/javascript"> (function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "http://connect.facebook.net/en_US/all.js#xfbml=1&appId=359112054148719";
fjs.parentNode.insertBefore(js, fjs);
} (document, 'script', 'facebook-jssdk'));</script>
If a user is not logged into facebook when they click the Like button, the FB login page comes up. Once the user logs in, the Like button disappears (but the code is still there) & in order to see it, the user has to refresh the page. The Like box does not disappear if the user is already logged in. Is anybody familiar with this issue?