I'm considering this in a future release; by providing site owners with a way to set a different Login Welcome Page for each Level. Until this is integrated into the s2Member Framework, I would suggest using Advanced Conditionals for this, inside your existing Login Welcome Page.
There is more information on Advanced Conditionals, inside your WP Dashboard, under:
s2Member -> API Scripting -> Advanced ConditionalsHere is a quick example.
Step 1. Install the Exec-PHP plugin.
http://wordpress.org/extend/plugins/exec-php/Step. 2. Place something like this in your Login Welcome Page, using the HTML tab.
- Code: Select all
<?php if(S2MEMBER_CURRENT_USER_ACCESS_LEVEL === 0){ ?>
Login Welcome Page content for Free Subscribers.
<?php } else if(S2MEMBER_CURRENT_USER_ACCESS_LEVEL > 0) { ?>
Login Welcome Page content for paid Members with a Level > 0.
<?php } ?>