• Resolved doronzamir

    (@doronzamir)


    Hi,

    I am using the plugin for user registartion and sign in to my site.

    After “Sign in” Upper WordPress cursor appears and i like to hide it but notify users that they are login (or sign in). I was looking at the documentation and previous questions about that also but found nothing.
    Like to ask how to do it?

    Thank you,
    Doron Zamir

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @doronzamir,

    Did you mean admin bar at top of your page?

    Regards!

    Thread Starter doronzamir

    (@doronzamir)

    Hi @rumesh38 ,

    Yes How it possible to hide the admin bar at the top of the page.

    And if i may ask another question please, How it is possible to modify the “My Account” page so for each user that login to the site will be a different account page according to the Role.

    Regards and Thank you from advance

    Hi @doronzamir,

    To hide the admin bar for any user except administrator, please paste the code below to your functions.php file. This file will be present in your active theme’s folder.

    add_action( 'after_setup_theme', 'remove_admin_bar' );
    function remove_admin_bar() {
    	if ( ! current_user_can( 'administrator' ) ) {
    		show_admin_bar( false );
    	}
    }

    The feature to customize my-account for different user role is not possible right now. We will think about it.

    Regards

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘How to hide Upper cursor’ is closed to new replies.