If the
Special Redirection URL is used, then it shouldn't default to Page 0, I'll let Jason know about this.
In the meantime, what you could do is use a normal page for the
Login Welcome Page instead of a URL with the replacement code, then have alternative content depending on the user's level using conditionals.
WP Admin -> s2Member -> API / Scripting -> Simple/Shortcode Conditionals -> Example #3- Code: Select all
[s2If current_user_is(s2member_level2)]
Some premium content for Level 2 Members.
[/s2If]
[s2If current_user_is(s2member_level1)]
Some premium content for Level 1 Members.
[/s2If]
[s2If current_user_is(s2member_level0)]
Some content for Free Subscribers.
[/s2If]
I hope that helps.