Custom Button next to “ADD TO CART” button of WooCommerce based on Product Type

前端 未结 3 1941
终归单人心
终归单人心 2021-01-13 01:04

I want add a custom Button \"View Demo\" next to \"Add to Cart\" button of WooCommerce based on Product Type, both on main shop page and single product page.

I\'ve d

3条回答
  •  深忆病人
    2021-01-13 01:29

    For some reason LoicTheAztec's answer did not do it for me.

    Here is what worked:

    function wc_shop_demo_button() {
        echo 'View Demo';
    }
    add_action( 'woocommerce_after_add_to_cart_button', 'wc_shop_demo_button' );
    

    Hope that helps someone in their journey.

提交回复
热议问题