If someone has awards, and the code is in the post bit, it will work when looking at a thread but not in private message post bit :(
TIP!
If you want a vbulletin style box around your awards you can use
Code:
<div style="margin-right: 38px;">
<div style="border: 1px solid #b2b2b2; padding: 5px;">
<center><div style="margin-top: -13px; padding-left: 6px; padding-right: 6px; width: 47px; background-color: #fefdff;"><a href="/forums/award.php" title="Awards">Awards</a><br></div></center>
{$post['awards']}
</div>
Which will give you:
To get it to where it is in the image, i did the following:
(Note iv done so many code changes yours may look slightly different)
Your template > Posbit > Postbit
Look for the <td> </td> like this
Code:
<td class="post_author" width="200px">
<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']} <a href="misc.php?action=myspecs&uid={$post['uid']}" onclick="MyBB.popupWindow(this.href, 'myspecs_popup', 800, 550); return false;"><img src="images/orange14/computer.png"></a><br />
<span class="smalltext">
{$post['usertitle']}<br />
{$post['userstars']}
{$post['groupimage']}
</span>
</td>
AND AFTER! PUT
Code:
<td class="trow1" align="left" valign="middle" border="0">
<div style="margin-right: 38px;">
<div style="border: 1px solid #b2b2b2; padding: 5px;">
<center><div style="margin-top: -13px; padding-left: 6px; padding-right: 6px; width: 47px; background-color: #fefdff;"><a href="/forums/award.php" title="Awards">Awards</a><br></div></center>
{$post['awards']}
</div>
</td>
The awards will now be between td sections class="post_author" and class="smalltext post_author_info"
A few suggestions for the plugin,
- Award Description
- Awards page displays Award Icon | Award name | Award Description |
and each award name bit, links to a page which tells you what users have that award
Sorry but i cannot give much support if you need anything for the above, just backup your template your going to edit before you do anything so you can revert back =]
Sorry i rushed this post so its a bit untidy and in a wierd order, :P