• Resolved girkers

    (@girkers)


    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)
  • 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 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

    (@girkers)

    I had tried the CSS approach however I didn’t quite have it right. Works a treat, thanks for the speedy reply.

    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.