Archived topic
Hide 'Price' in woocommerce Product and Category Pages.
3 replies · Started by Jackson on November 12, 2020
I have added products with prices for my reference only. I want to hide price in Product Page and Category Page.
Can you help with css?
Hi there,
you can remove prices from the Shop / Archives in Customizer > Layout > Woocommerce.
To remove them from the single product requires a PHP Snippet:
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
How to add PHP: https://docs.generatepress.com/article/adding-php/
Thanks for that code. Worked Perfect.
Glad to be of help