На самом деле проблема в том, что страницы используют разные сценарии для загрузки модуля FBConnect.
Вкл. 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>
Вкл. http://www.thegreekmerchant.com/product/fokofpolisiekar/band-logo
есть два сценария,предыдущий и следующий:
<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>
Я заменил первый скрипт на второй, и теперь http://www.thegreekmerchant.com/
работает (конечно, не в четкой версии, но на моем сервере с песочницей).Вам нужен только второй скрипт на http://www.thegreekmerchant.com/product/fokofpolisiekar/band-logo
.