It's *my* logic that's not functioning these days.
In other words,
- Code: Select all
<?php if (s2member_registration_time() > 0
&& current_user_can(access_s2member_ccap_life)) { ?>
will affect ccap "life" but not ccap "lifeTwo"
whereas
- Code: Select all
<?php if (s2member_registration_time() > 0
&& current_user_can(access_s2member_ccap_lifeTwo)) { ?>
will affect ccap "lifeTwo" but not ccap "life"
Even though the member is always on level 0...
So I can
drip them successively to the same member?
(weird kind of beginner at coding here, yes, apologies for what may be a very obvious statement)