Replace add to cart button with a read more linked to product page on shop pages in WooCommerce 3

前端 未结 4 1462
逝去的感伤
逝去的感伤 2020-12-06 03:37

I am using woocommerce and I have the following issue:

  • The products are displayed in the homepage with their price and add to cart button.
  • Add to ca
4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-06 04:33

    Add these to your functions.php file in the theme folder

    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart');
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart');
    

提交回复
热议问题