Woocommerce hook to Redirect single product pages to home page

·

woocommerce

Hello, welcome to therichpost.com. In this post, I will tell you, Woocommerce hook to Redirect single product pages to home page. WordPress is the best cms and Woocommerce is the best Ecommerce plugin. WordPress hooks(add_action, add_filter) give us the power to edit or change the code without interruption into the files and this is the best thing about wordpress. Now I am going to tell you how the hooks work.

Here is the working hook and you need to add this into your theme’s functions.php file:
add_action( 'template_redirect', 'product_redirection_to_home', 100 );
function product_redirection_to_home() {
    if ( ! is_product() ) return; // Only for single product pages.

    wp_redirect( home_url() ); // redirect home.
    exit();
}

  There are so many hooks in wordpress and i will let you know all. Please do comment if you any query related to   this  post. Thank you. Therichpost.com

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.