Quote:
Um, me again Is there a way to maybe add a toggle switch in options so noone can be added for a medal more than once? I have a ton of members and it can be hard to organize sometimes.
|
you have ton of members to give awards? wow ...
i'd give a member the same awards as many time as it needs. if you dont want to give member award many time, just dont give him again.
it's posible to check award+userid when adding one, but I cant do it now.
Quote:
For some reason the medals showing in postbit do not show up viewing PM's or when you use quick reply the medals dont show up until you refresh the page. Keep in mind the quick reply is using the ajax so the page doesnt reload from your reply.
|
well, there's some problem in private and announcement, will look into it.
Quote:
Is there anyway of displaying awards side by side 5 across, then move to the next line and add another 5, etc, etc. or wrapping to the next line with the YAAS system and if so how?
|
I didnt test, but you can try. edit YAAS - Showthread_postbit_create plugin
replace
PHP Code:
foreach($userawardscache[$post['userid']] AS $award_id => $award)
{
$aw_i++;
if ($aw_i <= $vbulletin->options['aw_display_limit'])
{
eval('$post[userawards] .= "' . fetch_template('awards_bit') . '";');
}
}
with
PHP Code:
foreach($userawardscache[$post['userid']] AS $award_id => $award)
{
$aw_i++;
if ($aw_i <= $vbulletin->options['aw_display_limit'])
{
eval('$post[userawards] .= "' . fetch_template('awards_bit') . '";');
if (($aw_i%5) == '0') eval('$post[userawards] .= "<br>";');
}
}
</font></font>
Quote:
How can I get the award to show in the postbit? Right now all I get is the links?
|
How can I understand what your error is? if you dont have award, no link is available at all.
read the manual on how to add/give award.