My account opens on the orders list
Customers who open My account land straight on their orders instead of the dashboard page.
<?php
add_action(
'template_redirect',
static function () {
if ( is_user_logged_in() && is_account_page() && ! is_wc_endpoint_url() ) {
wp_safe_redirect( wc_get_account_endpoint_url( 'orders' ) );
exit;
}
}
);
In these packs
- WooCommerce: account, emails and admin: A leaner My account page, handier order lists and emails, and lighter pages.