Can I use woocommerce with enfold to build a catalogue without prices and cart options?
If the answer is YES, I need a mod or it’s a default setting?
THX
Daniele.
Hi danielefadda!
Please try adding following code to Functions.php file in Appearance > Editor
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' );
remove_action( 'woocommerce_single_product_summary', 'woocommerce_single_price' );
remove_action( 'woocommerce_single_product_summary', 'woocommerce_add_to_cart' );
remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price' );
Regards,
Yigit