Well, in terms of functionality Jeff, when I run a subdomain and have the plugin installed and activated on multisites. If I user reaches Coffee page for example on my subdomain and signup from there, will he be redirected back to the coffee page on my subdomain?
We are highly worried about the functionality and any demonstration will help us understand our next steps.
Just to let you know, we disabled the registration on our site through wp-login.php by using:
/**
* remove the register link from the wp-login.php script
*/
add_filter('option_users_can_register', function($value) {
$script = basename(parse_url($_SERVER['SCRIPT_NAME'], PHP_URL_PATH));
if ($script == 'wp-login.php') {
$value = false;
}
return $value;
});
Do we have to remove the above after the next update?
Thank you.