• Resolved mrkknnthcrz

    (@mrkknnthcrz)


    On Multisite Website, The “Add User” button is missing [https://prnt.sc/100w4r5]

    The button will show if I disable the plugin.

    I Believe this is because of the styling of the plugin.

    Please check. Thanks

    • This topic was modified 3 years, 2 months ago by mrkknnthcrz.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Konrad Chmielewski

    (@hwk-fr)

    Hello,

    Thanks for the feedback! You’re right, this bug has been reported and will be fixed in the upcoming patch. The next update takes a little bit longer as expected, because it’s quite ambitious and has many new features. I’m working full time on it in order to release it as soon as possible. Just a little more patience, we’re not too far away from release!

    In the meantime, here is a code to disable the Enhanced UI Module only on “Multisite: New User” screen, so you can still enjoy it on other screens (Terms, User Edit, WP Settings…):

    add_action('acf/init', 'my_acfe_disable_enhanced_ui_multisite');
    function my_acfe_disable_enhanced_ui_multisite(){
    
        global $pagenow;
        
        // Disable Enhanced UI on Multisite New User Screen only
        if($pagenow === 'user-new.php' && is_multisite()){
    
            acf_update_setting('acfe/modules/ui', false);
    
        }
    
    }
    

    Sorry for the inconvenience.

    Regards.

    Thread Starter mrkknnthcrz

    (@mrkknnthcrz)

    Thank you, it solved temporarily. Will wait for the next update.
    Cheers!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Missing “Add User” Button on Multisite’ is closed to new replies.