Viewing 1 replies (of 1 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi, you can change it using the register_url filter.

    
    add_filter( 'register_url', 'my_register_url' );
    function my_register_url( $url ) {
        if( is_admin() ) {
            return $url;
        }
        return "https://southwest-pa.horseeventsnearme/";
    }
    

    The code you can try adding in your theme functions.php file.

Viewing 1 replies (of 1 total)
  • The topic ‘Register link sending to wrong url’ is closed to new replies.