Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • in reply to: Show Plugins/Themes and Admin Menu Access Issues #5212
    DT
    Participant

    Ok for the Delete site I wrote a redirect function that closes off the delete site from being accessed.

    For anyone who may be interested here it is below.

     function admin_redirects() {
         global $pagenow;
      if( ! is_super_admin() ) {
         /* Redirect Customizer to Theme options */
         if($pagenow == 'ms-delete-site.php'){
             wp_redirect(admin_url('/index.php'));
             exit;
         }
      }
    }
     add_action('admin_init', 'admin_redirects');

    You could also use user can instead of the if is super admin as I have above to better control the user capabilities to this function. In my case I want it closed off a bit more.

    The Mailgun settings are a Clientside issue. I left Clientside enabled but Deactivated the Admin Menu Tool where you can restrict the users ability to see the menu items and or change menu item names and the mailgun options showed up via network. This same feature is also the reason the permissions get changed. Clientside when that one feature is deactivated provides proper mission. I let the developer know.

    Lastly the reason the Page Builder menu link would not hide is also because of the admin menu feature of clientside do to having changed the names appearance. Once removing the name change everything hid as it should for the page builder.

    I very much appreciate all of the help on this as it has helped me uncover the issues that were actually causing the problem.

    in reply to: Show Plugins/Themes and Admin Menu Access Issues #5210
    DT
    Participant

    I will reach out to the Clientside Developer and have him fix the permission issues that the plugin is causing. He is very responsive and willing to make his product better.

    Only thing I will add is that I noticed you are looking at the admin menu options via the Sub Site. I am referring to the NETWORK control options not the sub site controls of URE. The delete site and mailgun both show on the Sub Site.

    BUT Those options don’t show at all from the network URE Admin Menu Options. My Concern is if I change the network options for admin menu it will overwrite what has been set on the sub sites.

    I understand you won’t make URE compatible with Clientside. I’m not asking you to and I will have the deveveloper fix permission issues so that it works with Clientside.

    But can you at least answer the question regarding why mailgun and delete site only show on the subsites and not in the network control options?

    Thanks again

    in reply to: Show Plugins/Themes and Admin Menu Access Issues #5207
    DT
    Participant

    Even when I have clientside disabled it the Tools and Delete site still show on my menu. I have left it deactivated so that you can see it still shows.

    So it does not appear to be a Clientside being incompatible with URE issue. Also just to confirm MailGun and Visual Composer both still show as well with Clientside Deactivated.

    in reply to: Show Plugins/Themes and Admin Menu Access Issues #5205
    DT
    Participant

    Thanks for the response. I look into that. What about my second issue listed?

    My user role does not have the capability to delete sites. But for some reason this still shows underneath Tools as an option. I have tools blocked in the admin menu access but because they for some reason are still able to delete sites they are seeing Tools in the menu and still can delete sites.

    Also The visual composer page builder menu is blocked to this user role using admin access menu but again it is still showing up in the menu list. At least in this case it is redirecting to the dashboard.

    Lastly I have mailgun installed on my multsite environment and there are two menu items for this. Mailgun and mailgun lists. Neither of these show up in the admin access menu for me to have blocked. They are underneath settings.

    Thank you so much for your continued help

    in reply to: Show Plugins/Themes and Admin Menu Access Issues #5203
    DT
    Participant

    Hey Vladimir. Any update on this?

    Thanks!

    in reply to: Show Plugins/Themes and Admin Menu Access Issues #5199
    DT
    Participant

    I have sent the email with credentials. Please let me know what you find and if you need anything else!

    in reply to: Show Plugins/Themes and Admin Menu Access Issues #5197
    DT
    Participant

    Hopefully woocommerce fixes that quickly. I rolled back to previous version for now.

    I can launch a staging site for you and provide SuperAdmin access as well as SFTP access to the staging environment. Is there a safe way to deliver this information to you?

    in reply to: Show Plugins/Themes and Admin Menu Access Issues #5193
    DT
    Participant

    I just found one more issue as well. I updated my Woocommerce from version 3.4.5 to version 3.4.6 and now all of a sudden when i’m in User Role Editor in my network settings I cannot filter through the user roles. Its stuck on customer. (Select Role and change its capabilities: )*** Won’t let me choose editor, contributor etc to actually view, adjust or change their capabilities.

    I tested this on my staging site as well after it broke on production with the Woocommerce update.

Viewing 8 posts - 1 through 8 (of 8 total)