From what I understand Buddypress has authority over s2member’s registration process, so even if I change things for s2member, buddypress won’t recognize it.
IS there anything I can change in buddy press to make it work?
Or
Is there a way I can give the registration authority back to s2member?
Where would I place said code snippet? I don’t have the plugin they are referring to.
edited:
/* Forces the default role of a new user to be set to "s2member Level 1" instead of "Subscriber" */
add_filter("ws_plugin__s2member_force_default_role", "default_role",10,1);
function default_role($role) {
$return = 's2member_level1';
return $return;
}
Can I place this in my bp code somewhere or something?