Title: Hide &#8220;Create Account&#8221; link
Last modified: December 21, 2021

---

# Hide “Create Account” link

 *  Resolved [girkers](https://wordpress.org/support/users/girkers/)
 * (@girkers)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/hide-create-account-link/)
 * Is there a way to hide the “Create account” on the log in screen as we will be
   creating the users manually?
 * Thanks.

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

 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/hide-create-account-link/#post-15183968)
 * Hi,
 * The easiest way is using the CSS to hide the link. Here is the CSS you can try:
 *     ```
       .uwp-footer-links a.uwp-register-link {
           display: none !important;
       }
       ```
   
 * Another way is to [override](https://userswp.io/docs/developers/override-templates/)
   the template login.php to the theme and remove the following code from the file:
 *     ```
       <div class="uwp-footer-link d-inline-block">
       						<?php
       						echo aui()->button(array(
       							'type'  =>  'a',
       							'href'       => uwp_get_register_page_url(),
       							'class'      => 'd-block text-center mt-2 small uwp-register-link',
       							'content'    => uwp_get_option("register_link_title") ? uwp_get_option("register_link_title") : __( 'Create account', 'userswp' ),
       							'extra_attributes'  => array('rel'=>'nofollow')
       						));
       						?>
                           </div>
       ```
   
 * Let me know if it works for you or not.
 * Regards,
    Patrik
 *  Thread Starter [girkers](https://wordpress.org/support/users/girkers/)
 * (@girkers)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/hide-create-account-link/#post-15184020)
 * I had tried the CSS approach however I didn’t quite have it right. Works a treat,
   thanks for the speedy reply.
 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/hide-create-account-link/#post-15184101)
 * Glad that helped 🙂 Don’t forget to write a review for our plugin if you really
   think we have created something useful. Have a good day.
 * Regards,
    Patrik

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

The topic ‘Hide “Create Account” link’ is closed to new replies.

 * ![](https://ps.w.org/userswp/assets/icon-256x256.png?rev=2784318)
 * [UsersWP - Front-end login form, User Registration, User Profile & Members Directory plugin for WP](https://wordpress.org/plugins/userswp/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/userswp/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/userswp/)
 * [Active Topics](https://wordpress.org/support/plugin/userswp/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/userswp/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/userswp/reviews/)

## Tags

 * [create account](https://wordpress.org/support/topic-tag/create-account/)
 * [login](https://wordpress.org/support/topic-tag/login/)

 * 3 replies
 * 2 participants
 * Last reply from: [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * Last activity: [4 years, 5 months ago](https://wordpress.org/support/topic/hide-create-account-link/#post-15184101)
 * Status: resolved