Email Register Link Not Working
-
Hello there,
I have seen this issue arise before however the fixes provided in previous post did not work. I need my “register” page and my “activate/?/” page whitelisted so my users can complete their registration. this is the code i am using now:
/**
* Filter Force Login to allow exceptions for specific URLs.
*
* @return array An array of URLs. Must be absolute.
**/
function my_forcelogin_whitelist( $whitelist ) {
$whitelist[] = site_url( ‘/register/’ );
$whitelist[] = site_url( ‘/activate/?’ );
return $whitelist;
}
add_filter(‘v_forcelogin_whitelist’, ‘my_forcelogin_whitelist’, 10, 1);
Viewing 12 replies - 1 through 12 (of 12 total)
Viewing 12 replies - 1 through 12 (of 12 total)
- The topic ‘Email Register Link Not Working’ is closed to new replies.