MyBB Community Forums

Full Version: Awards in Postbit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello

Please help me, show awards in posbit where is a red arrow.

[Image: 56737667.png]
Copy the code associated to the Award and paste it in "postbit_author_user" template.
<table width="100%" border="0" cellspacing="2" cellpadding="1"  style="font-size:12px">
<tr><td class="trow4" align="center">
{$lang->postbit_posts} {$post['postnum']}
</td></tr>

<tr><td class="trow4" align="center">
{$lang->postbit_joined} {$post['userregdate']}
</td></tr>

<tr><td class="trow4" align="center">
<div class="author_info">Grupa: <span class="group_{$usergroup['gid']}">{$usergroup['title']}</span></div>
</td></tr>
<table width="100%" border="0" cellspacing="2" cellpadding="1"  style="font-size:12px">
<tr><td class="trow4" align="center">
{$post['replink']}
</td></tr>

<tr><td class="trow4" align="center">
<!-- MYPS --!>
</td></tr>

<tr><td class="trow4" align="center">
Osiągnięcia:
<br />{$post['awards']}<br /><br>
</td></tr>


My post_author_user
In this code, find this;
<tr><td class="trow4" align="center">
Osiągnięcia:
<br />{$post['awards']}<br /><br>
</td></tr>
and Change it into;
<tr><td class="trow4" align="center">
Osiągnięcia:{$post['awards']}<br /><br>
</td></tr>
still the same ;/
Maybe, somebody help me?