Besides your Page Access Restriction, you could use a conditional for the Silver (Level 1) content, checking that the user is not Gold (Level 2).
WP Admin -> s2Member -> API / Scripting -> Simple/Shortcode Conditionals -> Example #3In pages with Access Restriction set to Level 1, use this to wrap the content:
- Code: Select all
[s2If !current_user_is(s2member_level2)]
Silver Content
[/s2If]
The "!" means "not".This way Silver user gets access to Silver content, Gold user gets access to Gold content but not Silver content, Platinum user gets access to Silver, Gold and Platinum content.
I'm pretty sure it'll work. Let me know how it goes in your tests.