یکی از مواردی که خیلی مشکل ساز شد PavAvatarbox یا User's Bussiness Card هست که از نگارش 1.5 به پلتفورم اضافه شد و با عبور ِ ماوس از روی اواتر کاربران ِ شبکه ظاهر شده و گاها" علیرغم میل ِ کاربران به همان صورت باز باقی میماند.

ابتدا فایل Inside_posts.js را به Themes/*/JS منتقل کنید.
سپس به Themes/*/HTML/Single_post.php رجوع کرده و کد زیر را بیابید :
<?php if( $this->user->is_logged && $D->p->post_user && $this->user->id!=$D->p->post_user->id ) { ?>
<a href="<?= userlink($D->p->post_user->username) ?>" id="postuserbox_av1_<?= $D->p->post_tmp_id ?>" onmouseover="postuserbox_open('<?= $D->p->post_tmp_id ?>');" class="postavatar" title="<?= htmlspecialchars($D->p->post_user->fullname) ?>"><img src="<?= $C->IMG_URL ?>avatars/thumbs1/<?= $D->p->post_user->avatar ?>" alt="<?= htmlspecialchars($D->p->post_user->fullname) ?>" /></a>
<div class="pavatar" onmousemove="postuserbox_keepopen();" id="postuserbox_av2_<?= $D->p->post_tmp_id ?>" onmouseout="postuserbox_close_ev('<?= $D->p->post_tmp_id ?>');" style="display:none;">
<div class="pavatarbox">
<div class="pavatarbox2">
<div class="pavatarbox3">
<a href="<?= userlink($D->p->post_user->username) ?>" title="<?= htmlspecialchars($D->p->post_user->fullname) ?>" class="pab_avatar"><img src="<?= $C->IMG_URL ?>avatars/thumbs1/<?= $D->p->post_user->avatar ?>" alt="<?= htmlspecialchars($D->p->post_user->fullname) ?>" /></a>
<a href="<?= userlink($D->p->post_user->username) ?>" class="pab_username"><?= htmlspecialchars($D->p->post_user->username) ?></a>
<div class="pab_userinfo"><?= htmlspecialchars($D->p->post_user->fullname) ?></div>
<a href="javascript:;" id="pubx_f_<?= $D->p->post_tmp_id ?>" style="display:<?= $this->user->if_follow_user($D->p->post_user->id)?'none':'block' ?>;" onclick="user_follow('<?= $D->p->post_user->username ?>', this, 'pubx_unf_<?= $D->p->post_tmp_id ?>', false);" onfocus="this.blur();" class="pab_follow"><b><?= $this->lang('postubox_follow') ?></b></a>
<span id="pubx_unf_<?= $D->p->post_tmp_id ?>" style="display:<?= $this->user->if_follow_user($D->p->post_user->id)?'block':'none' ?>;">
<div class="pab_following"><?= $this->lang('postubox_following') ?></div>
<a href="javascript:;" onclick="user_unfollow('<?= $D->p->post_user->username ?>', this.parentNode, 'pubx_f_<?= $D->p->post_tmp_id ?>', '<?= $this->lang('user_unfollow_confirm',array('#USERNAME#'=>$D->p->post_user->username)) ?>', false);" onfocus="this.blur();" class="pab_stopfollow"><b><?= $this->lang('postubox_unfollow') ?></b></a>
</span>
</div>
<?php if( !empty($D->p->post_user->about_me) || !empty($D->p->post_user->location) || ($D->p->post_user->user_details&&!empty($D->p->post_user->user_details->website)) ) { ?>
<div class="pavatar_contacts">
<div class="pavatar_contacts2" style="padding:5px;">
<table cellpadding="0" cellspacing="3">
<?php if( !empty($D->p->post_user->about_me) ) { ?>
<tr>
<td class="contactparam"><img src="<?= $C->SITE_URL.'themes/'.$C->THEME ?>/imgs/cicons_username.gif" alt="" /></td>
<td class="contactvalue"><?= htmlspecialchars($D->p->post_user->about_me) ?></td>
</tr>
<?php } ?>
<?php if( !empty($D->p->post_user->location) ) { ?>
<tr>
<td class="contactparam"><img src="<?= $C->SITE_URL.'themes/'.$C->THEME ?>/imgs/cicons_location.gif" alt="" /></td>
<td class="contactvalue"><?= htmlspecialchars($D->p->post_user->location) ?></td>
</tr>
<?php } ?>
<?php if( $D->p->post_user->user_details && !empty($D->p->post_user->user_details->website) ) { ?>
<tr>
<td class="contactparam"><img src="<?= $C->SITE_URL.'themes/'.$C->THEME ?>/imgs/cicons_site.gif" alt="" /></td>
<td class="contactvalue"><a href="<?= htmlspecialchars($D->p->post_user->user_details->website) ?>" title="<?= htmlspecialchars($D->p->post_user->user_details->website) ?>" target="_blank"><?= htmlspecialchars(str_cut(preg_replace('/^(http(s)?|ftp)\:\/\/(www\.)?/','',$D->p->post_user->user_details->website),25)) ?></a></td>
</tr>
<?php } ?>
</table>
</div>
</div>
<?php } ?>
</div>
<a href="javascript:;" onclick="postform_open(({username:'<?= $D->p->post_user->username ?>'}));" onfocus="this.blur();" class="pab_btn_pm"><?= $this->lang('postubox_privmsg', array('#USERNAME#'=>$D->p->post_user->username)) ?></a>
<a href="javascript:;" onclick="postform_mention('<?= $D->p->post_user->username ?>',true);" onfocus="this.blur();" class="pab_btn_at"><?= $this->lang('postubox_mention', array('#USERNAME#'=>$D->p->post_user->username)) ?></a>
</div>
</div>
<?php } else { ?>
<a href="<?= userlink($D->p->post_user->username) ?>" class="postavatar" title="<?= htmlspecialchars($D->p->post_user->fullname) ?>"><img src="<?= $C->IMG_URL ?>avatars/thumbs1/<?= $D->p->post_user->avatar ?>" alt="<?= htmlspecialchars($D->p->post_user->fullname) ?>" /></a>
<?php } ?>
<?php } ?>
<?php } ?>
کد زیر را جایگزین کنید :
<?php if( $this->user->is_logged && $D->p->post_user && $this->user->id!=$D->p->post_user->id ) { ?>
<a href="<?= userlink($D->p->post_user->username) ?>" id="postuserbox_av1_<?= $D->p->post_tmp_id ?>" onmouseover="postuserbox_open('<?= $D->p->post_tmp_id ?>');" onmouseout="postuserbox_close_ev('<?= $D->p->post_tmp_id ?>');" class="postavatar" title="<?= htmlspecialchars($D->p->post_user->fullname) ?>"><img src="<?= $C->IMG_URL ?>avatars/thumbs1/<?= $D->p->post_user->avatar ?>" alt="<?= htmlspecialchars($D->p->post_user->fullname) ?>" /></a>
<div class="pavatar" onmousemove="postuserbox_keepopen();" id="postuserbox_av2_<?= $D->p->post_tmp_id ?>" onmouseout="postuserbox_close_ev('<?= $D->p->post_tmp_id ?>');" style="display:none;">
<div class="pavatarbox">
<div class="pavatarbox2">
<div class="pavatarbox3">
<a href="<?= userlink($D->p->post_user->username) ?>" onmouseover="postuserbox_keepopen();" title="<?= htmlspecialchars($D->p->post_user->fullname) ?>" class="pab_avatar"><img src="<?= $C->IMG_URL ?>avatars/thumbs1/<?= $D->p->post_user->avatar ?>" alt="<?= htmlspecialchars($D->p->post_user->fullname) ?>" /></a>
<a href="<?= userlink($D->p->post_user->username) ?>" class="pab_username"><?= htmlspecialchars($D->p->post_user->username) ?></a>
<a href="javascript:;" id="pubx_f_<?= $D->p->post_tmp_id ?>" style="display:<?= $this->user->if_follow_user($D->p->post_user->id)?'none':'block' ?>;" onclick="user_follow('<?= $D->p->post_user->username ?>', this, 'pubx_unf_<?= $D->p->post_tmp_id ?>', false);" onfocus="this.blur();" class="pab_follow"><b><?= $this->lang('postubox_follow') ?></b></a>
<span id="pubx_unf_<?= $D->p->post_tmp_id ?>" style="display:<?= $this->user->if_follow_user($D->p->post_user->id)?'block':'none' ?>;">
<div class="pab_following"><?= $this->lang('postubox_following') ?></div>
<a href="javascript:;" onclick="user_unfollow('<?= $D->p->post_user->username ?>', this.parentNode, 'pubx_f_<?= $D->p->post_tmp_id ?>', '<?= $this->lang('user_unfollow_confirm',array('#USERNAME#'=>$D->p->post_user->username)) ?>', false);" onfocus="this.blur();" class="pab_stopfollow"><b><?= $this->lang('postubox_unfollow') ?></b></a>
</span>
</div>
<?php if( !empty($D->p->post_user->fullname) || !empty($D->p->post_user->location) || ($D->p->post_user->user_details&&!empty($D->p->post_user->user_details->website)) ) { ?>
<div class="pavatar_contacts">
<div class="pavatar_contacts2" style="padding:5px;">
<table cellpadding="0" cellspacing="3">
<?php if( !empty($D->p->post_user->fullname) ) { ?>
<tr>
<td class="contactparam"><img src="<?= $C->SITE_URL.'themes/'.$C->THEME ?>/imgs/cicons_username.gif" alt="" /></td>
<td class="contactvalue"><?= htmlspecialchars($D->p->post_user->fullname) ?></td>
</tr>
<?php } ?>
<?php if( !empty($D->p->post_user->location) ) { ?>
<tr>
<td class="contactparam"><img src="<?= $C->SITE_URL.'themes/'.$C->THEME ?>/imgs/cicons_location.gif" alt="" /></td>
<td class="contactvalue"><?= htmlspecialchars($D->p->post_user->location) ?></td>
</tr>
<?php } ?>
<?php if( $D->p->post_user->user_details && !empty($D->p->post_user->user_details->website) ) { ?>
<tr>
<td class="contactparam"><img src="<?= $C->SITE_URL.'themes/'.$C->THEME ?>/imgs/cicons_site.gif" alt="" /></td>
<td class="contactvalue"><a href="<?= htmlspecialchars($D->p->post_user->user_details->website) ?>" title="<?= htmlspecialchars($D->p->post_user->user_details->website) ?>" target="_blank"><?= htmlspecialchars(str_cut(preg_replace('/^(http(s)?|ftp)\:\/\/(www\.)?/','',$D->p->post_user->user_details->website),25)) ?></a></td>
</tr>
<?php } ?>
</table>
</div>
</div>
<?php } ?>
</div>
<a href="javascript:;" onclick="postform_open(({username:'<?= $D->p->post_user->username ?>'}));" onfocus="this.blur();" class="pab_btn_pm"><?= $this->lang('postubox_privmsg', array('#USERNAME#'=>$D->p->post_user->username)) ?></a>
<a href="javascript:;" onclick="postform_mention('<?= $D->p->post_user->username ?>',true);" onfocus="this.blur();" class="pab_btn_at"><?= $this->lang('postubox_mention', array('#USERNAME#'=>$D->p->post_user->username)) ?></a>
</div>
</div>
<?php } else { ?>
<a href="<?= userlink($D->p->post_user->username) ?>" class="postavatar" title="<?= htmlspecialchars($D->p->post_user->fullname) ?>"><img src="<?= $C->IMG_URL ?>avatars/thumbs1/<?= $D->p->post_user->avatar ?>" alt="<?= htmlspecialchars($D->p->post_user->fullname) ?>" /></a>
<?php } ?>
<?php } ?>
<?php } ?>
قالب و افزونههای شِیرترانیکس

Themes/*/HTML/Single_post.php هستش کدی که اون بالا گذاشتید اون تو نیستش
