hello ..
we all know that when you write a comment to a profile or a wall post and you put a long word the rest wont show (when you post it , it will only show lets say 50 out of 100 and the rest will be hidden somewhere) *see before.png
there is a ticket about this subject and as we all know it will take dolphin years to fix this huge and complicated problem ..duh.
any ways to fix this you have to open "BxBaseCmtsView.php" file ( you will fined it under "templates\base\scripts" )
now search for this (line 282)
<div class="cmt-body">' . $a['cmt_text'] . '</div>
and replace it with
<div class="cmt-body">' . wordwrap($a['cmt_text'], 75, "<br />", true) . '</div>
save and exit..
now to fix this in the wall posts
open the "BxWallModule.php" file which you can fined it under "modules\boonex\wall\classes"
and search for (line 520)
$aVariables = array_merge($aVariables, array('post_wrote' => _t("_wall_wrote"), 'post_content' => $aVariables['post_content']));
and replace it with
$aVariables = array_merge($aVariables, array('post_wrote' => _t("_wall_wrote"), 'post_content' => wordwrap($aVariables['post_content'], 70, "<br />", true)));
see before.png and after.png to see the difference
save and good luck
if you fined this anywhere else please post it in reply
>> if you liked this then take a look at my signature