Hello, I need to have the membership selection done when registering, kindly advice on how I can disable the wplms registration page with the pmpro registration
Please add this php code in your wplms-customizer plugin -> wplms-cutomizer.php file. Please change the url from the code.
add_filter( 'register_url', 'custom_register_url',99 );
add_filter( 'wplms_buddypress_registration_link', 'custom_register_url',99 );
function custom_register_url( $register_url )
{
$register_url = 'www.google.com';
return $register_url;
}