Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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&amp;layout=button_count&amp;width=100&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21&amp;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!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.