Answers for "remove dashboard mya ccount"

PHP
0

remove dashboard mya ccount

add_action('template_redirect', 'misha_redirect_to_orders_from_dashboard' );
 
function misha_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;
	}
 
}
Posted by: Guest on February-10-2021

Browse Popular Code Answers by Language