
Statistics: Posted by crushthenet — November 17th, 2010, 2:31 pm
 However, what you've got there deals with CONTENT - not with DOWNLOADABLE FILES which is what my client needs to protect.
 However, what you've got there deals with CONTENT - not with DOWNLOADABLE FILES which is what my client needs to protect.
Statistics: Posted by martonic — November 17th, 2010, 2:01 pm
<?php if (current_user_is("s2member_level4")){ ?>
    Some premium content for Level 4 Members.
<?php } else if (current_user_is("s2member_level3")){ ?>
    Some premium content for Level 3 Members.
<?php } else if (current_user_is("s2member_level2")){ ?>
    Some premium content for Level 2 Members.
<?php } else if (current_user_is("s2member_level1")){ ?>
    Some premium content for Level 1 Members.
<?php } else if (current_user_is("s2member_level0")){ ?>
    Some content for Free Subscribers.
<?php } else { ?>
    Some public content.
<?php } ?> [s2If current_user_is(s2member_level1)]
    Content for Members at exactly Level# 1, on this Blog.
[/s2If]Statistics: Posted by crushthenet — November 17th, 2010, 1:41 pm
 
 Statistics: Posted by martonic — November 17th, 2010, 1:14 pm