I have a blog which I configured to have facebook comments plugin. It is working fine on Desktops, but on mobile, it doesn't show up. I have turned on the flag saying "Yes. Show mobile template on mobile devices. "
If I turn off this flag, the comments plugin show up, but the rest of the blog is not mobile optimized. I am looking for one of the two options:
- Have the ability to customize the mobile template so I can add the comments plugin HTML code there.
- Customize my existing template to tell blogger to pick it up irrespective of whether the rendering is on mobile or on desktop.
My custom HTML edits are as follows:
<!-- In head -->
<meta content='xxxxx' property='fb:app_id'/>
<!-- In Header tag -->
<div id='fb-root'/>
<script>
window.fbAsyncInit = function() {
// init the FB JS SDK
FB.init({
appId : 'xxxx', // App ID from the App Dashboard
status : true, // check the login status upon init?
cookie : true,
xfbml : true // parse XFBML tags on this page?
});
// Additional initialization code such as adding Event Listeners goes here
};
// Load the SDK's source Asynchronously
// Note that the debug version is being actively developed and might
// contain some type checks that are overly strict.
// Please report such bugs using the bugs tool.
(function(d, debug){
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" + (debug ? "/debug" : "") + ".js";
ref.parentNode.insertBefore(js, ref);
}(document, /*debug*/ false));
</script>
<!-- After div with class post-footer -->
<b:if cond='data:blog.pageType == "item"'>
<fb:comments colorscheme='light' expr:href='data:post.canonicalUrl' expr:title='data:post.title' expr:xid='data:post.id' mobile='auto-detect' num_posts='2'/>
</b:if>
I have tried adding the following to the template, but doesn't seem to make a difference:
<b:if cond='data:blog.isMobile'>
<fb:comments colorscheme='light' expr:href='data:post.canonicalUrl' expr:title='data:post.title' expr:xid='data:post.id' mobile='auto-detect' num_posts='2'/>
</b:if>