{"id":3765,"date":"2020-10-16T12:19:00","date_gmt":"2020-10-16T12:19:00","guid":{"rendered":"https:\/\/purelysupp.com\/wordpress\/?p=3765"},"modified":"2022-10-16T13:12:16","modified_gmt":"2022-10-16T13:12:16","slug":"hide-category-from-prevent-products-from-displaying-on-woocommerce-shop-page","status":"publish","type":"post","link":"https:\/\/purelysupp.com\/wordpress\/code-snippets\/hide-category-from-prevent-products-from-displaying-on-woocommerce-shop-page\/","title":{"rendered":"Prevent product category from displaying on WooCommerce shop page"},"content":{"rendered":"\n<p>Add the following code to your theme&#8217;s function.php file, or a functionality plugin to modify the WooCommerce Shop Page in order to prevent specific categories from displaying on the WooCommerce Shop Page.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n\n\/** WooCommerce Hide Cat. *\/\n\/** This code should be added to functions.php of your theme or functionality plugin.  **\/\n\/** DO NOT INCLUDE THE OPENING &lt;?PHP **\/\n\nfunction custom_pre_get_posts_query( $q ) {\n    $tax_query = (array) $q-&gt;get( 'tax_query' );\n    \n    $tax_query&#91;] = array(\n           'taxonomy' =&gt; 'product_cat',\n           'field' =&gt; 'slug',\n           'terms' =&gt; array( 'your category' ), \n            \/\/ Hide products from \"your category\" on the shop page.\n           'operator' =&gt; 'NOT IN'\n    );\n\n    $q-&gt;set( 'tax_query', $tax_query );\n\n}\nadd_action( 'woocommerce_product_query', 'custom_pre_get_posts_query' );<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Add the following code to your theme&#8217;s function.php file, or a functionality plugin to modify the WooCommerce Shop Page in order to prevent specific categories from displaying on the WooCommerce Shop Page.<\/p>\n","protected":false},"author":1,"featured_media":10631,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","iawp_total_views":1,"wds_primary_category":56,"footnotes":""},"categories":[56],"tags":[110,214,215,204],"class_list":{"0":"post-3765","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-code-snippets","8":"tag-code","9":"tag-customization","10":"tag-shop-page","11":"tag-woocommerce","12":"entry"},"featured_image_src":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2022\/09\/woocommerce-code_snippets-600x303.jpg","featured_image_src_square":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2022\/09\/woocommerce-code_snippets-600x303.jpg","author_info":{"display_name":"Jack Alltrade","author_link":"https:\/\/purelysupp.com\/wordpress\/author\/jacka11trade\/"},"_links":{"self":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3765","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/comments?post=3765"}],"version-history":[{"count":3,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3765\/revisions"}],"predecessor-version":[{"id":10661,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3765\/revisions\/10661"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media\/10631"}],"wp:attachment":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media?parent=3765"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/categories?post=3765"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/tags?post=3765"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}