Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi, you could add such a snippet of code in a code snippet plugin or in your child theme functions.php file

    if ( ! function_exists( 'yith_proteo_account_widget_url_custom' ) ) {
    add_filter( 'yith_proteo_account_widget_url', 'yith_proteo_account_widget_url_custom', 10, 2 );
    function yith_proteo_account_widget_url_custom( $url, $i ) {
    	return wc_get_page_permalink( 'myaccount' );
    }
    }
    Thread Starter bosunjohnson

    (@bosunjohnson)

    Thanks a lot!
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to edit my account icon link’ is closed to new replies.