WooCommerce|我想要在(所有)产品页面上只按下‘打开产品’按钮‘添加到购物车’

时间:2020-07-14 作者:markm

Woocommerce |我想通过“打开产品”按钮更改(所有)产品页面上的“添加到购物车”按钮。

我知道人们可以点击图片或标题,但我也想要一个需要按钮(而不是添加到购物车)来打开产品。

你们能帮帮我吗?

1 个回复
SO网友:Pipo

Try this

function wc_shop_open_product() {
    echo \'<a class="button demo_button" href="\'.get_the_permalink().\'">Open product</a>\';
}
add_action( \'woocommerce_after_add_to_cart_button\', \'wc_shop_open_product\' );

相关推荐