MyBB Community Forums

Full Version: New Points and My Awards
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I have installed MY Awards and New Points, so, the awards has put itself before the points, and it does not looks good because if a member has no awards, the place will be empty...
take a look at it
http://pakforums.pk/showthread.php?tid=11&pid=20#pid20
How can I fix it?

Also, if you see in my given URL, there two PIDs... why are they? is this a problem?
Bro,
Find {$post['awards']} in

Acp>themes and templates>templates>postbit templates>postbit

Replace that with this

<fieldset><legend><a href="{$mybb->settings['bburl']}/award.php" title="more&raquo;">Awards Showcase</a></legend>
<div>
{$post['awards']}
</div>
</fieldset>

This will make a place for awards Smile
In postbit or postbit_classic template

Find:
{$post['awards']}

Place it after:
{$post['newpoints_postbit']}
there isn't any {$post['awards']} in postbit nor in postbit_classic
If it is not there add te code i have provided it gives u a box with award showcase.

Add it just after the
{ $ p o s t [ ' n e w p o i n t s _ p o s t b i t ' ]


Which award plugin are you using?
(2011-06-17, 08:55 AM)Sama34 Wrote: [ -> ]Which award plugin are you using?

I am using, My Awards by labrocca.

(2011-06-17, 08:44 AM)envira Wrote: [ -> ]If it is not there add te code i have provided it gives u a box with award showcase.

Add it just after the
{ $ p o s t [ ' n e w p o i n t s _ p o s t b i t ' ]

It still have a blank line above points
Please, paste your postbit_author_user here.
This is my postbit_author_usre
Quote: {$lang->postbit_posts} {$post['postnum']}<br />
{$lang->postbit_joined} {$post['userregdate']}
{$post['replink']}{$post['warninglevel']}<br /><!-- AWARDS -->
Remove <!-- AWARDS --> from there and in postbit or postbit_classic template:

Find:
{$post['newpoints_postbit']}

Replace:
{$post['newpoints_postbit']}<br /><!-- AWARDS -->
Pages: 1 2