There's labels , also known as your membership levels in this context, which define access to whatever you can view/have access to. So if you have level 3 membership, it has access to levels 0, 1, 2, and 3.
http://www.s2member.com/general-options-overview-video/Check out this video, I'm sure it will help you out with everything you need to know, it goes pretty into great detail on setting alot of this stuff up within the options.
Then once you have the membership levels figured out and setup, you can utilize advanced conditionals
http://www.s2member.com/advanced-conditionals-video/ to diversify what each member sees in your given post template.
There's 2 ways to diversify what is viewed or able to be seen using conditionals , quick run through:
- Code: Select all
<?php if(current_user_can("access_s2member_level1")) { ?>
Cancel Button Goes Here
<?php } ?>
This allows you to place the cancel button text as long as the user logged in has ACCESS to s2member_level1, remember, if a level 4 user goes to this page he'll see it as well because he has access to level (level 4 has access to levels 0,1,2,3) ..
If you wanted to just show it to a level 1 user account I believe it goes like this:
- Code: Select all
<?php if(current_user_can("s2member_level1")) { ?>
Cancel Button Goes Here
<?php } ?>
I believe taking out the access part of it allows only users with level 1 access to view that page.
Get exec-php plugin by Wordpress and plug those codes into a post/page template to get started and work around with it, but also watch the video on advanced conditionals, Jason Caldwell explains it alot better and in more depth.
Hopefully this answers what you're looking for!