Seo 1 min read

How to disable/remove woocommerce single product page?

add_action('wp','prevent_access_to_product_page');
function prevent_access_to_product_page(){
  if ( is_product() ) {
    wp_redirect( get_permalink( 269 ) );
  }
}

Share this article

Related posts

Discussion

0 comments

No comments yet.

Have a technical question, correction or a different interpretation? Add to the discussion.

Leave a reply