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've a photo gallery with fancybox, when fancybox is open outside the tittle appears a like button. The problem is that doesn't work.

here my JS:

 $(".fancyboxi").fancybox({
     padding: 0,
                openEffect  : 'none',
                closeEffect : 'none',

                prevEffect : 'none',
                nextEffect : 'none',

                closeBtn  : true,
            helpers: {


                overlay: {

                       css: {'background-color': '#333'} 
                    },
                title : {
                    type: 'outside'
                }
            },

          beforeShow: function () {
            if (this.title) {
                var titulo=this.href;

                // Add tweet button
  this.title += '<a href="https://twitter.com/share" class="twitter-share-button" data-count="none" data-url="http://kingpollo.it/'+ titulo + '">Tweet</a>';

            // Add FaceBook like button
                this.title += '<iframe src="//www.facebook.com/plugins/like.php?href=http://kingpollo.it/'+ titulo + '&amp;layout=button_count&amp;show_faces=true&amp;width=500&amp;action=like&amp;font&amp;colorscheme=light&amp;height=23" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:110px; height:23px;" allowTransparency="true"></iframe>';


            }
        },

        afterShow: function(){
             twttr.widgets.load();
        },
        nextEffect: 'fade',
        prevEffect: 'fade'

    }); // fancybox});

The twitter button works correctly. Why fb button no?

share|improve this question
Can you provide the link with issue, or replicate issue on fiddle? – Gurpreet Singh Nov 18 '12 at 21:09
kingpollo.it/elaborati.php (the web is underconstruction :P) – berti Nov 18 '12 at 21:20
I can see the FB button, what's the issue? – Gurpreet Singh Nov 18 '12 at 21:27
the problem is that i when clik on the button in my facebook wall the photo was i cliked not appears – berti Nov 18 '12 at 21:31
now when i clik get this error: The content you're trying to share includes a link that's been blocked for being spammy or unsafe:Body of an error/warning message. Title is: You can't post this because it has a blocked link.For more information, visit the Help Center. If you think you're seeing this by mistake, please let us know. – berti Nov 18 '12 at 22:11
show 2 more comments

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.