I am trying to add a 'like' ('recommend') button to my site.
The facebook buttons appear on my website, but it doesn't show that 126 people are already members of the group.
I am testing to see if it works on this page. http://www.quantummassageworks.com/indexFB.html
Here's the JavaScriptSDK:
<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_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
And the code for the plugin:
<div class="fb-like"
data-href="https://www.facebook.com/groups/51418441750/"
data-send="true" data-layout="button_count"
data-width="450" data-show-faces="false" data-action="recommend">
</div>