Quote:
Originally Posted by EaglezEye
Where do I find these codes? FORUMHOME template? I looked there but didnt find these.
Also how would I go about changing the color of the usernames?
|
They're in the phrases. Can't change the color of the usernames, thats why this hack focus's on usergroup markup colors. Theres another subscription hack on here, that will allow you to change the colors, but its not nearly as advanced as mine.
Quote:
Originally Posted by jdebler
Thanks for the clarification!
Question...
When modifying that template, if I have two different subscriptions and I want to display one of two different expiration warning messages that depends on the subscription they are currently on, how would I do that?
I tried the following based on the usergroup that my subscriptions put the user in:
Code:
<if condition="is_member_of($post, 1)">
<div align="center" class="tborder" style="padding: 2px;">
(Expiration warning message to Subscription level 1)</span></div>
</div>
</if>
<if condition="is_member_of($post, 2)">
<div align="center" class="tborder" style="padding: 2px;">
(Expiration warning message to Subscription level 2)</span></div>
</div>
</if>
But that didn't work, neither message shows up. What did I miss? Also, is there a specific if condition that I should use that is based on current subscription instead of current usergroup?
|
Try $bbuserinfo instead of $post in those conditions