I'm having a problem generating the 'like' button for http://www.sandiego6.com/ For some reason it doesn't generate when I go https://developers.facebook.com/docs/reference/plugins/like/ and enter the full domain, but if I put in a different domain (http://www.google.com, for example) it appears. So the code on the template side is working correctly but it seems Facebook does not like our url.
When I strip the code down, it appears that the button WILL work on our site if it's linking to an external url but as soon as I add the url of a story from www.sandiego6.com it disappears.
Here is the code I am using: Test
<body>
<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&appId=346061978801571";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.sandiego6.com&
amp;send=false&layout=button_count&width=100&show_faces=false&action=like&colorscheme=light&font&height=21&appId=346061978801571" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:21px;" allowTransparency="true"></iframe>
<br>
<div class="fb-like" data-href="http://www.sandiego6.com" data-send="false"data-layout="button_count" data-width="100" data-show-faces="false"></div>
</body>
</html>
I'm not sure what the problem could be. I'd really appreciate if someone could help me out. Thanks!