In ./components/com_jfbconnect/libraries/utilities.php at 81 [current version]
if ($showPinterestButton)
{
$extraButtonText .= '{SCPinterestShare href=' . $url . " layout=" . $dataCount . ' image=' . $pinnedImage . ' desc=' . $pinnedText . ' size=' . $size . $renderKeyString . '}';
}
In ./components/com_jfbconnect/libraries/utilities.php [my patched version - it works well]
if ($showPinterestButton)
{
$pinnedText = str_replace(array('{', '}'), array('', ''), $pinnedText);
$extraButtonText .= '{SCPinterestShare href=' . $url . " layout=" . $dataCount . ' image=' . $pinnedImage . ' desc=' . $pinnedText . ' size=' . $size . $renderKeyString . '}';
}
If the content string contains some meta tags implemented by another content plugin similar to '{tab param=xy}' your current implementation of social buttons doesn't work well.
I use tha last JFBConnect 7.1.2.
Please, fix it in a next update.
Best Regards,
Milan