1

Topic: Display Membership Level

Is there a way I can display the Membership level in an account area? I don't want it to be viewed by others, but just so the member can see it. Maybe in the Upgrade section or on the Profile Editing page? This would be a good reminder that they should upgrade from Free to Paid.

Also, is there a function that allows them to see any payments they've made?

2

Re: Display Membership Level

You can't show order history at this time but you can display current level by using this code:

<!-- IF loggedin_group_id == "5" -->
  You're a bronze member
<!-- ELSEIF loggedin_group_id == "4" -->
  You're a gold member
<!-- ELSE -->
  Boo! You're regular member
<!-- ENDIF -->
Developer

3

Re: Display Membership Level

Boo! big_smile

- From the beginning I was intelligent, but since I learn something every day, I'm sure I'll end up wise as well -

4

Re: Display Membership Level

Or
<!-- ELSE -->
  You're regular member, no pay or bug off smile
<!-- ENDIF -->

Seriously though, I'll put it in a nice information box at the top of My Profile page
Green background if they've paid
Red background if they're free "prompting them to upgrade with a link to upgrade button"

5

Re: Display Membership Level

Ahhh.. as it is now, if Guest group are set not to be able to view members, a message "Please log in to be able to access this page" comes up if a guest try to view a profile... So what you tells here, is that you can set Guest Group to be able to view members, and then with an IF statement, let guests go to a common page with text and upgradelink  - as well as for regular members?

Last edited by Freja (2008-06-13 04:22:34)

- From the beginning I was intelligent, but since I learn something every day, I'm sure I'll end up wise as well -

6

Re: Display Membership Level

Guests shouldnt be able to upgrade.... they have to register first... I'm talking about free members / regular members

7

Re: Display Membership Level

Yes, but...hmm... this could be used for guests as well as for regular members... A better, more "nice" way to motivate guests to join that having a one-line sentense... (I wrote upgradelink, but this should ofcause be "sign up link" - was too quick)

Last edited by Freja (2008-06-13 04:25:59)

- From the beginning I was intelligent, but since I learn something every day, I'm sure I'll end up wise as well -

8

Re: Display Membership Level

Yes, then I understand - thats right wink

9

Re: Display Membership Level

Thanks Vlad.