I have the FB like button on main page and other pages. And the problem occurs only on the main page.
After clicking on FB like btn, counter increases by 1 and pop-up window for comments appears.
- If I click 'Close', everething is Ok,
- If I don't type any comments and click 'Post to Facebook', evereting is Ok too.
- BUT if I type any text and click 'Post', then after the page reloading I can see that my counter increases one more time
I use the next js-code on my site:
<div id="fb-root"></div>
<script>(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 = "//connect.facebook.net/en_GB/all.js#xfbml=1&app_id=MY_CODE";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
and that tag
<div class="fb-like" data-send="false" data-layout="button_count" data-width="150" data-show-faces="true"></div>