Quote:
Originally Posted by paul41598
Its in the template "expirydatebits"
|
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?