Hi there,
I have a question about WooCommerce and Enfold. I would like to use the functions of Woocommerce, without the function of actually buying the products. So I just want to use woocommerce to show my products, without selling them. I’m currently using posts for each product, but I want to use Woocommerce for that. Do you know if thats possible?
Hey Deborahvwdj!
Please add 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_template_single_price', 10 );
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
Cheers!
Yigit