De hecho, el problema es que las páginas usan scripts diferentes para cargar el módulo FBConnect.
En http://www.thegreekmerchant.com/
:
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId : '146943825373452',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true,
logging: '0'
});
jQuery(document).trigger('fb:init');
};
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net//all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>
En http://www.thegreekmerchant.com/product/fokofpolisiekar/band-logo
hay dos guiones, el anterior y el siguiente:
<div id="fb-root"></div><script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId: "146943825373452",
status: true,
cookie: true,
xfbml: true
});
FB.Event.subscribe("edge.create", function(href, widget) {
_gaq.push(["_trackEvent", "Facebook like", "Drupal", href]);
});
};
(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>
He reemplazado el primer guión con la segunda y ahora http://www.thegreekmerchant.com/
funciona (por supuesto, no la versión nítida, pero en mi servidor sandbox). Solo necesita el segundo script en http://www.thegreekmerchant.com/product/fokofpolisiekar/band-logo
.
¿No significa para añadirlo a la otra página, ya que esa página ya funciona ... – coderama
@RD De hecho, no necesita cambiar 'http: // www.thegreekmerchant.com/product/fokofpolisiekar/band-logo', pero, sin embargo, lo recomiendo encarecidamente.Esta página tiene los dos guiones FB mostrados en mi respuesta, y es redundante (especialmente al ver que el primer guión no funciona). Cuando se trata de 'http: // www.thegreekmerchant.com /', debe cambiar la primera parte del código de mi respuesta a la segunda parte del código. – AndersTornkvist