Multisite Not Authorized
-
It looks like it’s hard set to require users to be members of the site if used in a multisite setup. Is there a way to toggle it so that any logged in user can view any site as long as they are authenticated?
Allow it to be overridden with a hook. Something like this…function my_forcelogin_members_only() { return false; } add_filter( 'v_forcelogin_members_only', 'my_forcelogin_members_only' );Then add the following to line 23…
$members_only = apply_filters( 'v_forcelogin_members_only', TRUE );
and change line 53 to …
elseif ( $members_only && function_exists('is_multisite') && is_multisite() ) {
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘Multisite Not Authorized’ is closed to new replies.