I need my woocommerce site to do the following. If the user visits the /my-account page but is logged out I need it to redirect to the /login page. I currently have half of it (if is logged out) but I need to test if it’s the my-account/ page as well which I can’t figure out. Any help would be really appreciated!
if ( !is_user_logged_in()) {
wp_redirect( '/login' );
die();
}