In the /plugins/content/jfbccontent/jfbccontent.php file, around line 142, you'll see:
if ($showLike == true && $showLikeInViewPosition != SC_VIEW_NONE)
{
if ($isArticleView) //Article Text
$likeText = $this->_getJoomlaArticleLike($article, $configModel, $renderKeyString);
else //Blog Text
$likeText = $this->_getJoomlaBlogLike($article, $configModel, $renderKeyString);
SCArticleContent::addTextToArticle($article, $likeText, $showLikeInViewPosition);I'm assuming you only want the social image to show in the full articles (not blog views). If so, edit the above like so:
if ($showLike == true && $showLikeInViewPosition != SC_VIEW_NONE)
{
if ($isArticleView) //Article Text
{
$likeText = $this->_getJoomlaArticleLike($article, $configModel, $renderKeyString);
$likeText = '<div class="social-image"><img src="Click-Me.jpg" /></div>' . $likeText;
}
else //Blog Text
$likeText = $this->_getJoomlaBlogLike($article, $configModel, $renderKeyString);
SCArticleContent::addTextToArticle($article, $likeText, $showLikeInViewPosition);Obviously, update that code as necessary for your site. I hope that gets you going though!
Alex