• Resolved designminded

    (@designminded)


    I have another question. I made the events accessible only to members but visible to visitors but require to login in order to RSVP. Now, I noticed that on the member login form on event page it has a link to Register for those who are not members, is it possible to change the Register link to a specific Register page using a membership plugin, WP-Members? I don’t want to redirect visitors to WP default register page. Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey there @designminded,

    Thanks for reaching out!

    This isn’t TEC specific, but you could try a snippet like this in functions.php:

    add_filter(  'gettext',  'register_text'  );
    add_filter(  'ngettext',  'register_text'  );
    function register_text( $translated ) {
         $translated = str_ireplace(  'Register',  'Sign Up',  $translated );
         return $translated;
    }

    Hope that helps!

    Hey there,

    Since this thread has been inactive for a while, I’m going to go ahead and mark it as resolved. Don’t hesitate to create a new thread any time you help again!

    Ed ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change Register Link for Login Form’ is closed to new replies.