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 can't figure out why facebook like buttons is not showing. (note: for some reason it's appears on 2 of the teasers on homepage www.influenceology.com.)

It is trying to pull info but it won's display. I have double checked everything. I don't know where to go from here because I don't even know what might be the problem.

Here is the code to set up Open Graph info:

    //////////////////////////////////////////////
///* Facebook Open Graph XML */
//////////////////////////////////////////////


add_filter('language_attributes', 'add_og_xml_ns');
function add_og_xml_ns($content) {
  return ' xmlns:og="http://ogp.me/ns#" ' . $content;
}
add_filter('language_attributes', 'add_fb_xml_ns');
function add_fb_xml_ns($content) {
  return ' xmlns:fb="https://www.facebook.com/2008/fbml" ' . $content;
}

//////////////////////////////////////////////
///ADD FACEBOOK SDK
//////////////////////////////////////////////

function add_facebook_sdk() {
    if (is_single()) { ?>
<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({appId: '131304305618', status: true, cookie: true,
             xfbml: true});
  };
  (function() {
    var e = document.createElement('script'); e.async = true;
    e.src = document.location.protocol +
      '//connect.facebook.net/en_US/all.js';
    document.getElementById('fb-root').appendChild(e);
  }());
</script>
    <?php }
}
add_action('thesis_hook_before_html', 'add_facebook_sdk');

//////////////////////////////////////////////
/*///// END FACEBOOK SKD */
//////////////////////////////////////////////

//////////////////////////////////////////////
/////* FACEBOOK OG Data and First Image */
//////////////////////////////////////////////

function facebook_first_image_grabber() {
if (is_single()) {
global $post, $posts;
$my_post_image = get_post_meta($post->ID, 'thesis_post_image', $single = true);
$first_img_located = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
$first_img_located = $matches [1] [0];
    if(empty($first_img_located)){
$first_img_located = $my_post_image;
        }
    if(empty($my_post_image)){
$first_img_located = "http://all-images4.s3.amazonaws.com/fb/fb-share.jpg";
        }
    return $first_img_located;
    }
}

function open_graph_tags() {
if (is_single()) {
global $post;
?>
<meta property="og:title" content="<?php the_title(); ?>" />
<meta property="og:type" content="article" />
    <meta property="og:image" content="<?php if (function_exists('facebook_first_image_grabber')) {echo facebook_first_image_grabber(); }?>" />
<meta property="og:url" content="<?php the_permalink(); ?>" />
<meta property="og:description" content="<?php echo(get_post_meta($post->ID, "thesis_description", true)); ?>"/>
<meta property="og:site_name" content="<?php echo get_bloginfo('name'); ?>" />
<meta property="fb:admins" content="622767163" />
<meta property="fb:app_id" content="131304305618" />

<?php }
}
add_action('wp_head', 'open_graph_tags', 99);

Code used to insert button: (Note: I tried using HTML 5 code from facebook widget to no avail either)

<!-- Facebook button -->
<div class="facebookBtn"><iframe src="http://www.facebook.com/plugins/like.php?href=<?php the_permalink()?>&layout=box_count&show_faces=true&width=450&action=like&font&colorscheme=light&height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px; height:65px;" allowTransparency="true"></iframe>
</div>

When I use the debugger tools it doesn't pull any of the Open Graph Data (It used to).

So stumped and help is appreciated.

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.