The facepile works perfect in chrome but in firefox(v 10.0.2) I only get the small fb icon(that comes just before the friends names). The friends names and pictures are not being shown. And yes, I am logged into facebook in my firefox browser. I also have this in my html:
<html class="no-js" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/">
Suggestions please
Some details: 1) FYI this is my facepile code:
<div class="fb-facepile" data-max-rows="1" data-width="500" data-app-id="<? echo $fb_app_id ?>"></div>
2) This is the facebook JS I have included:
<div id="fb-root"></div>
<? $fb_app_id = $this->config->item('facebook_app_id'); ?>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : "<? echo $fb_app_id ?>", // App ID
channelUrl : '/channel.html', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
// Additional initialization code here
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
</script>