Love this mod... I installed it on a test style before rolling out to the full site and I'm having some issues.
Award, and gamer ids don't have a background. I know the templates for the postbits need to be editted for each addon, I just don't know what changes to make.... here's what I've got so far:
Postbit template for YetAnotherAwardSystem "MazdasNW Moderator" Badge:
Code:
<!-- show awards -->
<if condition="$post[showuserawards]">
<br />
<fieldset><legend><a href="member.php?u=$post[userid]&tab=myawards" title="$vbphrase[more_awards]">$vbphrase[award_showcase]</a></legend>
<div class="awards_showcase_awarddisplay">$post[userawards]</div>
<div class="awards_showcase_infodisplay">
<a href="member.php?u=$post[userid]&tab=myawards" title="$vbphrase[more_awards]">$vbphrase[total_awards]</a>: $post[num_awards]
<if condition="$vboptions[aw_points]"><br />
<a href="member.php?u=$post[userid]&tab=myawards" title="$vbphrase[more_awards]">$vbphrase[total_points]</a>: $post[total_points]
</if>
</div>
</fieldset>
<br />
</if>
<!-- /show awards -->
and
"GamerCards in User Profile and Postbit" is the last one not working....
Code:
<vb:if condition="$gamerid['gamertag'] OR $gamerid['psnid'] OR $gamerid['xfireid'] OR $gamerid['steamid'] OR $gamerid['wiicode']">
<!-- Gamer IDs -->
<dl class="userinfo_extra">
<dt>{vb:rawphrase bc_gamercards_title}</dt>
<dd>
<br />
<vb:if condition="$gamerid['gamertag']">
<a href="javascript://" onclick="openWindow('gamercard.php?do=xboxlive&u={vb:raw post.userid}',440,345); return false;"><img src="{vb:stylevar imgdir_misc}/gamericons/xboxlive.png" alt="{vb:rawphrase bc_gamercards_postbit_gamertag}: {vb:raw gamerid.gamertag}" /></a>
</vb:if>
<vb:if condition="$gamerid['psnid']">
<vb:if condition="$euversion">
<a href="javascript://" onclick="openWindow('gamercard.php?do=psn&u={vb:raw post.userid}',600,170); return false;"><img src="{vb:stylevar imgdir_misc}/gamericons/psn.png" alt="{vb:rawphrase bc_gamercards_postbit_psnid}: {vb:raw gamerid.psnid}" /></a>
<vb:else />
<a href="javascript://" onclick="openWindow('gamercard.php?do=psn&u={vb:raw post.userid}',300,200); return false;"><img src="{vb:stylevar imgdir_misc}/gamericons/psn.png" alt="{vb:rawphrase bc_gamercards_postbit_psnid}: {vb:raw gamerid.psnid}" /></a>
</vb:if>
</vb:if>
<vb:if condition="$gamerid['xfireid']">
<a href="javascript://" onclick="openWindow('gamercard.php?do=xfire&u={vb:raw post.userid}',480,235); return false;"><img src="{vb:stylevar imgdir_misc}/gamericons/xfire.png" alt="{vb:rawphrase bc_gamercards_postbit_xfireid}: {vb:raw gamerid.xfireid}" /></a>
</vb:if>
<vb:if condition="$gamerid['steamid']">
<a href="javascript://" onclick="openWindow('gamercard.php?do=steam&u={vb:raw post.userid}',330,364); return false;"><img src="{vb:stylevar imgdir_misc}/gamericons/steam.png" alt="{vb:rawphrase bc_gamercards_postbit_steamid}: {vb:raw gamerid.steamid}" /></a>
</vb:if>
<vb:if condition="$gamerid['wiicode']">
<img src="{vb:stylevar imgdir_misc}/gamericons/wii.png" alt="{vb:rawphrase bc_gamercards_postbit_wiicode}: {vb:raw gamerid.wiicode}" />
</vb:if>
</dd>
</dl>
<!-- / Gamer IDs -->
</vb:if>
Thanks!