Hi
Please find this function jas_claue_wc_my_account in
claue/core/libraries/vendors/woocommerce/init.php
But you should add a filter in child theme function for wp_logout_url
add_filter( 'logout_url', 'your_prefix_logout_url' );
function your_prefix_logout_url( $default )
{
return 'http://example.com/custom';
}
Best regards,