Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Chad Butler

    (@cbutlerjr)

    You can use the wpmem_login_form filter to str_replace the text:

    add_filter( 'wpmem_login_form', 'my_login_form' );
    function my_login_form( $form ) {
    
         $old = array(
              "Click here to register",
              "Click here to reset",
         );
    
         $new = array(
              "Register",
              "Reset",
         );
    
         $newform = str_replace( $old, $new, $form );
    
         return $newform;
    }
    Thread Starter shey456

    (@shey456)

    It worked. Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change Register and Reset link texts’ is closed to new replies.