Viewing 1 replies (of 1 total)
  • Plugin Author gVectors Team

    (@gvectors-team)

    Hi mlegoueff,
    WooDiscuz uses wp_login_url() (/wp-includes/general-template.php) which uses a filter on its return:

    return apply_filters('login_url', $login_url, $redirect);

    you might be able to add a filter function to functions.php of your theme, to influence the link example:

    add_filter( 'login_url', 'my_login_linkchanger');
    function my_login_linkchanger( $link ) {
      /*whatever you need to do with the link*/
      return home_url( '/my-account/');
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Change connect page’ is closed to new replies.