Salve a tutti,
come da titolo nel mio sito web: http://www.francescogranato.com ho implementato il tasto "Mi Piace" di Facebook, ma sembra non funzionare.
Ossia, cliccando sul tasto in questione si chiude immediatamente la popup che permette di condividere il post su Facebook e al suo posto compare la scritta "conferma" per poter riaprire la popup con il post (oltretutto senza immagine)

Qualcuno saprebbe aiutarmi?

I tag inseriti, relativi al tasto sono:

Codice:
<html xmlns:fb="http://ogp.me/ns/fb#">
Codice:
  <meta property="og:title" content="An Amaz-ing resume" />
  <meta property="og:type" content="article" />
  <meta property="og:url" content="http://www.francescogranato.com/" />
  <meta property="og:image" content="http://francescogranato.altervista.org/inc/_f_logo_260.png" />
  <meta property="fb:admins" content="100001308310298" />
  <meta property="article:published_time"  content="2013-03-01" />
Codice:
<div id="fb-root"></div>

<script>
  window.fbAsyncInit = function() {
    // init the FB JS SDK
    FB.init({
      status     : true, // check the login status upon init?
      cookie     : true, // set sessions cookies to allow your server to access the session?
      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/it_IT/all" + (debug ? "/debug" : "") + ".js";
     ref.parentNode.insertBefore(js, ref);
   }(document, /*debug*/ false));
</script>
Codice:
<div class="fb-like" data-href="http://www.francescogranato.com/" data-send="false" data-layout="button_count" data-width="450" data-show-faces="false"></div>