I noticed in J2.5 this thing,
same module (news_article) published in frontend 6 times. 4 of them show the "below" correct, the first tho of them are not showing.
however i modified the otsocialshare.php line 120 until "{ return" with this:
if($position == 'above'){
if($row->fulltext == ''){
$row->text = $html . $row->text;
$row->introtext = $html . $row->introtext;
}else{
$row->text = $html . $row->text;
$row->introtext = $html . $row->introtext;
}
}
else{
if($row->fulltext == ''){
$row->text = $row->text . $html;
$row->introtext = $row->introtext . $html;
}else{
$row->introtext = $row->introtext . $html;
$row->text = $row->text . $html;
}
}
instead of this:
if($position == 'above'){
if($row->fulltext == ''){
$row->text = $html . $row->text;
$row->introtext = $html . $row->introtext;
}else{
$row->text = $html . $row->text;
}
}else{
$row->text .= $html;
$row->introtext .= $html;
}
Thanks,
great module