Hi, I had a weekend myself so no prob. I solved it myself by editing com_easyblog/classes/facebook.php
changed:
$html .= EasyBlogHelper::addScriptDeclarationBookmarklet('$("#' . $placeholder . '").bookmarklet("facebookLike", {
url: "'.$url.'",
send: "'.$send.'",
layout: "'.$layout.'",
verb: "'.$verb.'",
locale: "'.$locale.'",
faces: "'.$faces.'",
theme: "'.$theme.'",
height: "'.$height.'",
width: "'.$width.'"
});');
to
$mylayout = "button_count";
$html .= EasyBlogHelper::addScriptDeclarationBookmarklet('$("#' . $placeholder . '").bookmarklet("facebookLike", {
url: "'.$url.'",
send: "'.$send.'",
verb: "'.$verb.'",
locale: "'.$locale.'",
theme: "'.$theme.'",
layout: "'.$mylayout.'",
});');
and now it works. I want to update to the latest version and I will, but when I tested on my dev site some things looked wierd so I have to do some work. Thanks for your time.