• Resolved juanjo27

    (@juanjo27)


    Hi,

    Is there a way to hide the “register” link and pipe character (via CSS) in login page and also to hide “login” link and pipe in registration page.

    Kind regards
    Juanjo Vazquez

Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Contributor Abdul Wahab

    (@abdulwahab610)

    Hello, @juanjo27

    You can hide the “Register” link from the login page.
    For this go to, Settings -> General from Dashboard menu and find Membership field. Uncheck this field and save the settings. Helping screenshot

    The “Register” link with the pipe character will hide. Helping screenshot

    Thank you.

    Thread Starter juanjo27

    (@juanjo27)

    Hello.

    I’ve using the free version of the plugin. I unsderstand i need to go to pro version?

    Thanks.

    Plugin Author Adnan

    (@hiddenpearls)

    If you need the Pro features then Yes otherwise free is fine. It’s up to you!

    Thread Starter juanjo27

    (@juanjo27)

    Ok, but I just asked for to hide the link. If I uncheck membership field then nobody could be registered. They are two different issues.

    Thanks

    Plugin Author Adnan

    (@hiddenpearls)

    So you want to hide only from wp-login.php page but want to use memership features as well.

    Then you should hide “Register” link using CSS on the login page.

    Plugin Contributor Abdul Wahab

    (@abdulwahab610)

    Hello, @juanjo27

    Add the following snippet of CSS in LoginPress > Custom CSS/JS section for hiding the “Register” link and pipe character.Helping screenshot

    .login #nav{
    font-size: 0;
    }
    .login #nav a:nth-child(2){
    font-size: 13px;
    }
    • This reply was modified 7 years, 10 months ago by Abdul Wahab.
    Thread Starter juanjo27

    (@juanjo27)

    Thanks for your replies, but there is something wrong in code snippet. Only pipe character is hided but register link is still displayed.

    Thread Starter juanjo27

    (@juanjo27)

    Ok. This code finally works:

    .login #nav {
    font-size: 0;
    }
    .login #nav a:nth-child(1){
    font-size: 0;
    }
    .login #nav a:nth-child(2){
    font-size: 13px;
    }

    Many thanks for your help

    Plugin Author Adnan

    (@hiddenpearls)

    You’re welcome @juanjo27

    Would you mind giving a 5-star review to our plugin 🙂

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

The topic ‘Hide register link in login page’ is closed to new replies.