I have a picture gallery and I use fancybox to display pictures, and navigate between pictures. Beneath the pictures I integrated the facebook comments plugin to be able to add specific comments for every picture in part. My problem is that the comments added by people for a specific picture do not appear. However if I add a comment it does show up, but these are only my comments and they appear only if I'm logged in to facebook. Does anybody have some idea what can I do wrong?
The url for the facncybox gallery is: http://www.bass.hr/photogallery.php?album=17 For the facebook comments integration I use the code generated from https://developers.facebook.com/docs/reference/plugins/comments/ .
Here is my code:
<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=196368707123454";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<div id="fancybox_container" style="display:none;">
<?php
foreach ($Imgs as $key => $i) {
?>
<div id="inline_<?php echo $key;?>" style="width:500px;">
<img id="fancyboxContentImage" src="<?php echo $target.$i['filename']; ?>" />
<div style="margin-top:20px;">
<fb:comments href="http://www.bass.hr/<?php echo $target.$i['filename'];?>" num_posts="2" width="450"></fb:comments>
</div>
</div>
<a class="grouped_elements" href="#inline_<?php echo $key;?>" rel="group" ></a>
<?php
}
?>
</div>
<script type="text/javascript">
$(window).load(function(){
$("a.grouped_elements").fancybox({
openEffect : 'fade',
closeEffect : 'fade',
nextEffect : 'fade',
prevEffect : 'fade',
mouseWheel : 'true',
width : 520,
height : 400,
autoSize : 'true',
fitToView : 'true',
type : 'inline',
scrolling : 'yes',
padding : 10,
afterShow :function() {
var referenceHeight = $('div.fancybox-inner div img').height()+15;
$('.fancybox-prev, .fancybox-next').css('height', referenceHeight+'px');
}
});
$("#fancybox_container a.grouped_elements:first").click();
});
</script>
Update1:
I also tried to load the facebook JavaScript SDK asynchronously like described in facebook developers JavaScript SDK reference, but just the same result.
Update2:
I also checked the url of my images by inspecting with firebug. If I copy that url and give it as a parameter to the graph api, then the comments are there in the array returned (see comments below for the url that I tried via graph api)
Update3:
I created a sepparate test page containing only the image and the facebook comments plugin under it. After that I passed the url to the debugger, so it flushes the cache, but no result. Here is the url with only the image+plugin: bass.hr/photodisplay.php?photo=pic_1293187827.jpg
Any ideas, not necessarily solutions would be much apreciated also.
Thanks in advance.