Title: How to hide Upper cursor
Last modified: July 24, 2019

---

# How to hide Upper cursor

 *  Resolved [doronzamir](https://wordpress.org/support/users/doronzamir/)
 * (@doronzamir)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/how-to-hide-upper-cursor/)
 * 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](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fhow-to-hide-upper-cursor%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  [Rumesh Udash](https://wordpress.org/support/users/rumesh38/)
 * (@rumesh38)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/how-to-hide-upper-cursor/#post-11765176)
 * Hi [@doronzamir](https://wordpress.org/support/users/doronzamir/),
 * Did you mean admin bar at top of your page?
 * Regards!
 *  Thread Starter [doronzamir](https://wordpress.org/support/users/doronzamir/)
 * (@doronzamir)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/how-to-hide-upper-cursor/#post-11773013)
 * Hi [@rumesh38](https://wordpress.org/support/users/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
 *  [abhashdc](https://wordpress.org/support/users/abhashdc/)
 * (@abhashdc)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/how-to-hide-upper-cursor/#post-11777091)
 * Hi [@doronzamir](https://wordpress.org/support/users/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.

 * ![](https://ps.w.org/user-registration/assets/icon-256x256.gif?rev=3284028)
 * [User Registration & Membership - Free & Paid Memberships, Subscriptions, Content Restriction, User Profile, Custom User Registration & Login Builder](https://wordpress.org/plugins/user-registration/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/user-registration/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/user-registration/)
 * [Active Topics](https://wordpress.org/support/plugin/user-registration/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/user-registration/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/user-registration/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [abhashdc](https://wordpress.org/support/users/abhashdc/)
 * Last activity: [6 years, 9 months ago](https://wordpress.org/support/topic/how-to-hide-upper-cursor/#post-11777091)
 * Status: resolved