How to disable/hide woocommerce single product page?

后端 未结 5 1966
北海茫月
北海茫月 2020-12-14 13:09

I am trying to hide the single product detail page on my wordpress-woocommerce site. How can i achieve this without breaking woocommerce functionality?

5条回答
  •  北荒
    北荒 (楼主)
    2020-12-14 13:49

    Put it in functions.php

    //Removes links
    add_filter( 'woocommerce_product_is_visible','product_invisible');
    function product_invisible(){
        return false;
    }
    
    //Remove single page
    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;
    }
    

提交回复
热议问题