Code-Snippets-Functions/Execute a function on a child site/WooCommerce/redirect-dashboard-to-orders-my-account.txt

10 lines
279 B
Text

add_action('template_redirect', 'wc_redirect_to_orders_from_dashboard' );
function wc_redirect_to_orders_from_dashboard(){
if( is_account_page() && empty( WC()->query->get_current_endpoint() ) ){
wp_safe_redirect( wc_get_account_endpoint_url( 'orders' ) );
exit;
}
}