PDA

View Full Version : Account upgrade module


Icehawk002
10-21-2005, 10:14 AM
I am sure this exists but I have searched and not found it.

I am looking to display a module in CMPS for account upgrade linked to paid subscriptions, currently registered users upgrade via their user CP and paid subscriptions but this is not obvious to everyone.

What I would like is a module to go on CMPS home which simply says "user you are 'current usergroup' status - UPGRADE TO MEMBER ACCOUNT and or RENEW MEMBERSHIP with relevant links

Thanks in advance

Brian
10-21-2005, 10:51 AM
Just add a new module with your links and such and only make it visible to usergroups besides your premium group.

Our Sponsors
 

Icehawk002
10-21-2005, 10:55 AM
Thank you

OK I have added a module, but not sure how to add code for current status i.e. My module just really provides a link to their user CP subscriptions.php.

Would like module to say "Your current membership status is XXXXX" upgrade to member or if member days remaining.

also would be nice (as its 30 day membership to have a little counter of the days remaining before renewal is required)

Brian
10-21-2005, 11:03 AM
A simple <if condition> would do the trick to change the text...
<if condition="is_member_of($bbuserinfo, X)">
Text for premium members
<else />
Text for non-paid members
</if>
I don't think there is any type of variable set for the number of days remaining in a subscription though, so that part wouldn't be so easy.

Our Sponsors
 

Icehawk002
10-21-2005, 11:50 AM
Thanks Brain that works well :)

Now suggestions for the count down code to include ?? :o

thanks