how to fix this weird issue.. - MikeInToshx - 2014-01-29
Hey guys,
I got this weird issue that the postbit link bar is showing incorrectly ( not in the middle/center ) only for admins/mods. Users don't have this problem. Here 2 images that will explain it better.
MikeInTosh is the mod. account:
[attachment=30937]
Dagini is a user account:
[attachment=30938]
Just all off a sudden yesterday I had this issue.. never had it.
RE: how to fix this weird issue.. - martec - 2014-01-29
post here your "postbit_classic" template
put in php tag
RE: how to fix this weird issue.. - MikeInToshx - 2014-01-29
Hi, here it is:
Postbit_classic:
{$ignore_bit}
<div class="posts" style="{$post_extra_style} {$post_visibility}" id="post_{$post['pid']}">
<div class="smalltext thead" id="pid{$post['pid']}">
<span class="postbit_date">{$post['postdate']} {$post['posttime']}</span>
<span>{$post['subject']} {$post['subject_extra']}<div class="float_right">{$post['mysupport_bestanswer']}{$post['mysupport_deny_support_post']}</div></span>
<span class="float_right">{$lang->postbit_post} <a href="{$post['postlink']}#pid{$post['pid']}">#{$postcounter}</a></span>
</div>
<div class="postbit_border {$altbg}{$post['mysupport_bestanswer_highlight']}{$post['mysupport_staff_highlight']} leftcol">
<!--Postbit author info-->
<div class="postbit_author">
<a href="#" id="profile_{$post['pid']}">{$post['username_formatted']}</a>{$post['onlinestatus']}<br />
<span class="smalltext">{$post['usertitle']}</span>
{$post['useravatar']}
{$post['userstars']}
{$post['groupimage']}
<div align="center">{$post['user_details']}</div>
</div>
<!--Postbit author info-->
<!--Postbit post-->
<div class="postbit_body">
<table width="100%">
<tr> <td class="posts" style="{$post_visibility}">
{$post['posturl']}
<div class="postbit_content" id="pid_{$post['pid']}">
<div class="postbit_message">{$post['message']}</div>
{$post['attachments']}
<br />
<br />
{$post['editedmsg']}
<br />
<br />
<br />
<br />
{$post['signature']}
</div>
</td> </tr>
</table>
</div>
<!--Postbit post-->
<!--Postbit bottom-->
<div class="postbit_bottom">
<div class="inline-block float_left">
{$post['iplogged']}{$post['button_report']}{$post['button_warn']}{$post['button_rep']}
</div>
<div class="inline-block float_right">
{$post['button_spam']}{$post['button_edit']}{$post['button_quickdelete']}{$post['button_quote']}{$post['button_multiquote']}{$post['button_reply_pm']}{$post['button_replyall_pm']}{$post['button_forward_pm']}{$post['button_delete_pm']}
</div>
</div>
<!--Postbit bottom-->
</div>
<!--Profile quick links-->
<div id="profile_{$post['pid']}_popup" class="popup_menu_thread" style="display: none;">
<ul class="popup_profile">
<li><img src="{$theme['imgdir']}/profile_icons/user.png" alt="" class="vmiddle" /> <a href="{$mybb->settings['bburl']}/member.php?action=profile&uid={$post['uid']}">View profile</a></li>
{$post['button_find']}
<li><img src="{$theme['imgdir']}/profile_icons/thread.png" alt="find threads" class="vmiddle" /> <a href="{$mybb->settings['bburl']}/search.php?action=finduserthreads&uid={$post['uid']}">Find all threads by this user</a></li>
{$post['button_pm']}
{$post['button_email']}
{$post['button_www']}
</ul>
</div>
<script type="text/javascript">
// <!--
if(use_xmlhttprequest == "1")
{
new PopupMenu("profile_{$post['pid']}");
}
// -->
</script>
<!--Profile quick links-->
</div>
<br />
RE: how to fix this weird issue.. - martec - 2014-01-30
You use Akismet plugin?
If not use, unistall and remove {$post['button_spam']} from Postbit_classic
RE: how to fix this weird issue.. - MikeInToshx - 2014-01-30
Thanks so much, I forgot that issue started when activating that plugin.
Cheers!
|