Hi Crowden. I'm not familiar with Comic Press, but from what I've seen you describe thus far, it sounds like you need to use s2Member's "Tag" protection, and/or "URI" protection. Both of these are available under: s2Member -> General Options.
If you are tagging everything "comic", then you can protect all Posts/Pages with the tag "comic" by adding that tag to your list of restrictions under: s2Member -> General Options -> Tag Level Restrictions.
Now, if I've completely mis-understood you; and instead, you want to block access to a specific section ( i.e. the comics sections ) within ANY Post/Page... you will need to use s2Member's Advanced Conditionals, by integrating those into your theme ( wrapping the sections that will contain comics with them ). Here is an example:
- Code: Select all
<?php if(current_user_can("access_s2member_level1")): ?>
[ display comics here ]
<?php endif; ?>
There is a ton of information and code samples inside your Dashboard, under:
s2Member -> API Scripting -> Advanced Conditionals.