In Woocommerce I am trying to find a solution for checking if a user is logged in on custom page and if so, redirect user to "My Account" page.
Any help on this is appreciated.
In Woocommerce I am trying to find a solution for checking if a user is logged in on custom page and if so, redirect user to "My Account" page.
Any help on this is appreciated.
Try the following, where you will replace 'some-page'
by your real page ID, slug or name. The code will redirect for a defined specific page logged in users to the my account page:
add_action('template_redirect', 'specific_logged_in_redirect');
function specific_logged_in_redirect() {
if ( is_page('some-page') && is_user_logged_in() ) {
wp_redirect( get_permalink( get_option('woocommerce_myaccount_page_id') ) );
exit();
}
}
Code goes in function.php file of your active child theme (or active theme). Tested and works.
For 2 pages you will use: is_page( array( 'some-page', 'some-other' ) )