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 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:

  1. Have the ability to customize the mobile template so I can add the comments plugin HTML code there.
  2. 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      : &#39;xxxx&#39;, // 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&#39;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 = &#39;facebook-jssdk&#39;, ref = d.getElementsByTagName(&#39;script&#39;)[0];
     if (d.getElementById(id)) {return;}
     js = d.createElement(&#39;script&#39;); js.id = id; js.async = true;
     js.src = &quot;//connect.facebook.net/en_US/all&quot; + (debug ? &quot;/debug&quot; : &quot;&quot;) + &quot;.js&quot;;
     ref.parentNode.insertBefore(js, ref);
   }(document, /*debug*/ false));
</script>    

<!-- After div with class post-footer -->
<b:if cond='data:blog.pageType == &quot;item&quot;'>
   <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>
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.