For those who don´t want the messaging column displayed:
In sidebar_friends.php around line 64
Code:
if ($friends){
echo "<table border=\"0\" style=\"margin-bottom:25px\"><th style=\"text-align=center\">" .$main_smarty->get_config_vars('PLIGG_Visual_Friends_Username')."</th><th align=\"center\">".
$main_smarty->get_config_vars('PLIGG_Visual_Friends_Status')."</th><th>" . $main_smarty->get_config_vars('PLIGG_Visual_Friends_Message')."</th>"; delete the last <th> tags and leave the last quotation mark and the semicolon:
Code:
if ($friends){
echo "<table border=\"0\" style=\"margin-bottom:25px\"><th style=\"text-align=center\">" .$main_smarty->get_config_vars('PLIGG_Visual_Friends_Username')."</th><th align=\"center\">".
$main_smarty->get_config_vars('PLIGG_Visual_Friends_Status')."</th>"; Furthermore, comment out the following around line 91:
Code:
//echo '<td><a href="#view_message" rel="view_message~!~view=small_msg_compose~!~login=' .$myfriend->user_login . '" class="lbOn">
//<img src='.my_pligg_base.'/templates/'.$the_template.'/images/user_message.png border=0 style="margin-left:12px"></a></td>';
echo '</tr>';