Redirect WooCommerce my account tabs

PHOTO EMBED

Sat Apr 16 2022 08:34:58 GMT+0000 (Coordinated Universal Time)

Saved by @netropol #php

//Redirect My Account and Edit Address to Orders tab
add_action('template_redirect', 'wish_custom_redirect_extended');

function wish_custom_redirect_extended()
{
    global $wp, $wp_query;

    if (!is_user_logged_in() && ('my-account' == $wp->request) || ('my-account/edit-address' == $wp->request)) {
        wp_safe_redirect(site_url('my-account/orders'));
        exit;
    }
}
content_copyCOPY

https://stackoverflow.com/questions/70395763/woocommerce-how-to-redirect-a-custom-end-point-on-my-account-page