• Thank you for the theme. Where can I update the link for the My Account icon? It’s now linked to wp-login.php. I want to link it to /my-account/ page.

Viewing 1 replies (of 1 total)
  • Hi, you could add such a snippet of code in 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' );
    }
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Update the link for My Account icon’ is closed to new replies.