MyBB Community Forums

Full Version: Fix Userbars and Userstars doesn't show up
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

Does anyone know how to fix Userbars and userstars doesn't show up in comment sections and also profile page, but on profile page only Userbars show up.

Here pictures view from my templates:

#Profile page
[Image: profile_page.png]




#Comment section
[Image: Comments_Section.png]
anyone ...
It might be because of your postbit template is not having userstars and userbars code in it.
Can you share your postbit code here ?
If they don't show up then they have been removed. Compare your template with the default theme template. Templates to check are member_profile, postbit, postbit_classic
(2016-08-26, 01:51 PM)WallBB Wrote: [ -> ]It might be because of your postbit template is not having userstars and userbars code in it.
Can you share your postbit code here ?

{$ignore_bit}

<table border="0" cellspacing="0" cellpadding="10" class="postbit-fix tfixed clear">
<tbody><tr>
<div id="posts">

<table border="0" cellspacing="0" cellpadding="10" class="scaleimages tborder" style="margin-top: 5px;" id="post_{$post['pid']}">
<div class="post_author scaleimages">
<tbody><tr>
<td class="trow1" valign="top" style="width: 180px;border-right: 1px solid #151515;">	<a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
<div align="center">
<div class="postbit-username">
<span class="largetext">{$post['profilelink']}</span> {$post['onlinestatus']}
</div>

{$post['useravatar']}
</div>
<div align="left">
<span class="smalltext">
<div class="author_information">
<div>
<div align="center">

<br />{$post['usertitle']}<br />

</div>

<div class="author_statistics">
{$post['user_details']}{$post['newpoints_postbit']}
</div>



<td class="trow1" valign="top" style="border-left: 1px solid #303030;">
<table width="100%">
          <tbody><tr><td>
<div class="post_content">
<div class="post_head">
{$post['posturl']}
{$post['icon']}
<span class="post_edit" id="edited_by_{$post['pid']}">{$post['editedmsg']}</span>
{$post['subject_extra']}
</div>
</td>
</tr>
</tbody></table>

<div class="post_body scaleimages" id="pid_{$post['pid']}">
{$post['message']} <br /><div class="float_right">
<div style="{$post['tyl_display']}" class="like_postbit" id="tyl_{$post['pid']}">{$post['thankyoulike_data']}</div></div><br />
</div>
{$post['attachments']}
{$post['signature']}
<div class="post_meta" id="post_meta_{$post['pid']}">

</div>
</div>

<tr>
<td class="trow1" style="white-space: nowrap; text-align: center; vertical-align: middle;border-right: 1px solid #151515;"><span class="smalltext">{$post['postdate']}</span></td>

<td class="trow1" style="vertical-align: middle;border-left: 1px solid #303030;">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tbody><tr valign="bottom">
<td align="left" class="postbit_buttons"> 

{$post['button_email']}{$post['button_pm']}{$post['button_www']}{$post['button_find']} {$post['iplogged']}


</td>
<td align="center"></td>
<td align="right" class="postbit_buttons">

{$post['button_tyl']}{$post['button_edit']}{$post['button_quickdelete']}{$post['button_quickrestore']}{$post['button_quote']}{$post['button_multiquote']}{$post['button_mention']}{$post['button_report']}{$post['button_warn']}{$post['button_purgespammer']}{$post['button_reply_pm']}{$post['button_replyall_pm']}{$post['button_forward_pm']}{$post['button_delete_pm']}

</td>
</tr>
</tbody></table>
</td>
</tr>

</div>
</td>
</tr>
</tbody></table>

(2016-08-26, 01:51 PM)Ashley1 Wrote: [ -> ]If they don't show up then they have been removed. Compare your template with the default theme template. Templates to check are member_profile, postbit, postbit_classic

Thanks Ashley1.