Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Amrit Kumar Shrestha

    (@shresthauzwal)

    Hi @montey11,

    Currently, we have a feature to prevent dashboard access but it does not hide the admin bar. If you want to enable this feature then please go to your dashboard >> User Registration >> Settings >> Prevent dashboard access >> Select the user roles.

    If you want to hide the admin bar only then Please add the following code on your theme’s functions.php file, or you can use the code snippet plugin (This plugin will help you secure the site while adding programming codes and make your customization code safe from updates)

    add_filter( 'show_admin_bar', 'hide_admin_bar' );
    function hide_admin_bar(){ 
    	return false; 
    }

    Regards!

    Thread Starter montey11

    (@montey11)

    Hi,

    Thank you for your quick response. Something is hiding the adminbar on my website so I was asking to see if it was your plugin. There is no code in functions.php so I’m not sure what it is then if not your plugin.

    Thanks.

    Plugin Support Amrit Kumar Shrestha

    (@shresthauzwal)

    Hi Monty,

    Thank you for writing back,

    Yes, The user registration plugin does not hide the admin bar, but we plan to add this feature. For now, you can check by deactivating your plugins one by one. You will find the plugin that hides the admin bar on your website.

    I am marking this thread as resolved as I believe things are now clear. Please create a new support thread if needed.

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘wordpress top toolbar disabled’ is closed to new replies.