How to hide the single product page

This will hide the single product page the proper WordPress way by making the product not public.

Pop this into your functions.php file.

add_filter( 'woocommerce_register_post_type_product','hide_product_page',12,1);
function hide_product_page($args){
    $args["publicly_queryable"]=false;
    $args["public"]=false;
    return $args;
}

 


Leave a Reply

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