• Resolved skumar1st

    (@skumar1st)


    I am unable to find disable wp-admin dashboard for user.

    Let me know setting location or take feedback if not available.

    Thanks.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Contributor mbrsolution

    (@mbrsolution)

    Hi, go to WP Security -> Brute Force -> Rename Login Page. Let me know if this is what you mean?

    Thank you.

    Thread Starter skumar1st

    (@skumar1st)

    No. Thanks for reply. In that I rename login.

    I want to disable wp-admin dashboard for user means only Admin can access wp dashboard.

    Let me know if I am unable to describe my problem.

    Plugin Contributor mbrsolution

    (@mbrsolution)

    Hi,

    I want to disable wp-admin dashboard for user means only Admin can access wp dashboard.

    Unfortunately that feature is not currently included in the plugin.

    Kind regards.

    Thread Starter skumar1st

    (@skumar1st)

    This is basic protection for avoid wp-dashboard. Please note this user’s feedback and innclude in next update if possible.

    Ultimate your name is “All-In-One” and basic feature is missing.

    Thanks.

    Plugin Support vupdraft

    (@vupdraft)

    We will make a note of this for our development team to review.

    I have my own plugin and added the following to prevent access. You could add this to your functions.php file.

    // only SuperAdmin access to All In One WP Security & Firewall
    add_action( ‘admin_menu’, function() {
    if ( (is_multisite() && !current_user_can(‘update_core’)) || ( !is_multisite() && !current_user_can(‘administrator’)) ) remove_menu_page( ‘aiowpsec’ );
    } );

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Disable wp-admin dashboard for user’ is closed to new replies.