Log in

View Full Version : How can I make my ranking "supporter" "VIP member" "donater" linkable?


the stig
06-14-2009, 06:41 AM
yup.. how can I make my ranks linkable? I thought it was impossilbe until yesterday I stumbled upon this forum.

http://www.webhostingtalk.com/showthread.php?t=860534

You can actually click on the "Premium Member" rank and it opens a webpage.

I want to know how I can do that.

THanks in advance! :D

EagleNick
06-14-2009, 06:59 AM
Hm, they could have used a conditional around the rank code in the postbit template so that the rank image for Premium Members is clickable.
Like this:


<if condition="$post['rank']">
<if condition="$post['usergroupid'] == X">
<div class="smallfont">
<a href="payments.php">$post[rank]</a>
</div>
</if>
</if>The code in blue is what you should add. Change the X to the ID of the Premium Member group.

I just posted this off the top of my head, so try it out and let me know if it doesn't work properly. I didn't test it. ;)

the stig
06-15-2009, 09:44 AM
ok. I will give it a shot. thanks.