How to set Catalog visibility hidden in woo-commerce WordPress programmatically?
Like its mentioned here :
https://docs.woothemes.com/document/catalog-visibility-options/
But i can’t find any hook or hack, that how to do it in PHP.
How to set Catalog visibility hidden in woo-commerce WordPress programmatically?
Like its mentioned here :
https://docs.woothemes.com/document/catalog-visibility-options/
But i can’t find any hook or hack, that how to do it in PHP.
Comments are closed.
I have tried doing this for some days, and there is nothing about it online so I read the woocommerce documentation and discovered that in woocommerce 3.x.x the visibility is a taxonomy called “product_visibility”.
To achieve that you should set taxonomy terms, for example:
All possible taxonomy terms:
The visibility is set in the custom field
_visibility
. You can change it withupdate_post_meta()
:Possible values:
visible
(Catalog & Search)catalog
(Catalog only)search
(Search only)hidden
(nowhere)