Log in

View Full Version : Mod to show which schemes users are using...


iamacliche
09-07-2006, 03:47 PM
Yeah so, that's the mod I'm looking for...
Basically that shows which scheme they're using in the postbit...

I can't seem to find it...
I have looked...

ZombieAndy
09-07-2006, 04:38 PM
In the postbit template, add

<div>Style:
<if condition="$post['styleid']==#"><a href="http://www.yourforums.com/forum/index.php?styleid=#">your default style</a>
<else />
<if condition="$post['styleid']==#"><a href="http://www.yourforums.com/forum/index.php?styleid=#">Alternative style</a>
<else />
<if condition="$post['styleid']==#"><a href="http://www.yourforums.com/forum/index.php?styleid=#">Alternative style</a>
<else />
<a href="http://www.yourforums.com/forum/index.php?styleid=#">your default style</a>
</if>
</if>
</if>
</if>
</div>

wherever you want it to appear, i have it underneath the members age, so it would go underneath

<if condition="$post['age']"><div>$vbphrase[age]: $post[age]</div></if>

obviously, you need to change the URL to your own forums and the #'s to the corresponding style ID's.

done :)