Is there any way for only the super administrator to have access to this plugin?
I’m on a multisite and I wouldn’t like other users, even administrators, to be able to see anything related to this plugin.
]]>When I log as a super-admin, I get an error 502 on the mailpoet plugin, when I want for example access the emails page and the subscribers page.
As soon as I remove the super-admin privilege from my account status , the error 502 disapperas and I can acccess these two pages.
I thank you for the advice to solve this issue.
PY
]]>class_gateways.php
file, inside the melipayamakpattern
method, there is a small bug. The phone numbers are currently joined by a comma, and then the message is sent using the SendByBaseNumber3
method.
However, the melipayamak API only allows one phone number at a time [1], which prevents us from setting multiple admin numbers in the plugin configuration.
Can you please fix this part of the plugin? (perhaps by adding a loop for the number list?)
Thanks for your great plugin.
]]><?php
// Add all roles to 2fa authentication
add_filter( 'sg_security_2fa_roles', 'add_all_roles_to_2fa' );
function add_all_roles_to_2fa( $roles ) {
$wp_roles = wp_roles();
$roles = array_keys( $wp_roles->roles );
return $roles;
}
I noticed that once you are a Super Admin in a Multisite Network and haven’t been assigned to a subsite you can login without using 2FA. Once you add a Super Admin to a subsite the user needs to setup their 2FA.
This is a serious security flaw to enable it for administrators and editors but not for Super Admins who aren’t assigned to a subsite. Is there a way to activate 2FA for all super admins who aren’t assigned to a subsite?
]]>I am having this issue:
I have a client that has a wordpress multisite and their only login credentials have the Role of Administrator which does not grant access to the Multisite Network dashboard. All users are registered as admin or editor, none has SUPER ADMIN.
We need to verify and update the theme, the plugins, etc and we cannot seem to find any option to access the Network Dashboard and my client does not have any other login option or does not have the contact if the person that created the multisite years ago.
Is there any way we can solve this and grant them suer admin credentials?
]]>