I am using the WooCommerce plugin.
I want to redirect the user to shop page if they try to access the product link.
For example, this is the product link: and shop page link:
Now when a user tries to visit a product link, should be redirected to the shop page!
Mainly, I don't want anyone to have an access to the product page!
Please, can someone tell me how can I achieve this?
Thanks in advance!
I am using the WooCommerce plugin.
I want to redirect the user to shop page if they try to access the product link.
For example, this is the product link: http://www.example/product/av and shop page link: http://www.example/shop
Now when a user tries to visit a product link, should be redirected to the shop page!
Mainly, I don't want anyone to have an access to the product page!
Please, can someone tell me how can I achieve this?
Thanks in advance!
You can try using template_redirect
action hook to check if the current page is product page and after that, you can redirect the user to your shop page.
Paste this code into your functions.php
add_action('template_redirect','custom_shop_page_redirect');
function custom_shop_page_redirect(){
if (class_exists('WooCommerce')){
if(is_product()){
wp_redirect(home_url('/shop/'));
exit();
}
}
return;
}
I have not tested it, but hope it will work for you.