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?
i tried
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 );
But when i use my phone – it still display the “Cart” via the display.
Please can you advice.
@charlescheng719 although you could unhook all the functions your self including jquery scripts (which is causing your mobile ‘issue’) you might better go with one of the catalog plugins available. A google search for ‘woocommerce catalog’ will give you a lot of solutions. Pick the one that suites you best. My former favorite unfortunately lost some attention from the developers so I would not recommend it until it gets updates.
Thank you. Let me try it out. ;)