• Resolved cjmclean

    (@cjmclean)


    I’m loving this plugin so far. However, how do I change the “Register” text at the bottom of the login form?

Viewing 4 replies - 1 through 4 (of 4 total)
  • stephunique

    (@stephunique)

    I also have this question. At the moment people can click on it and it takes them to a registration page that is not a page I can edit. I want to have a separate log in page and would like to be able to edit the link that this “Register” text goes to.

    Plugin Support madalinaruzsa

    (@madalinaruzsa)

    Hi @cjmclean and @stephunique,

    You can use the code below to modify the “Register” text link on the login form:

    add_filter( 'pms_login_register_text', 'pmsc_change_login_form_register_text' );
    function pmsc_change_login_form_register_text(){
        return 'New text';
    }

    You can add your code to your theme’s ‘functions.php’ file or create a new plugin as described here.

    Hello @madalinaruzsa , thanks for the answer. Can I confirm, this code only allows you to change the word “register” to something else right? It doesn’t allow us to change the link it goes to, or remove it completely?

    I think I already know the answer but I thought a confirmation is helpful for everyone in case it is not so clear since we are not all developers.

    Thanks

    Plugin Support madalinaruzsa

    (@madalinaruzsa)

    Hi @stephunique,

    Yes, with the above code you can change the “Register” text on the login form.

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.