答案 0 :(得分:0)
对于在特定产品类别归档页面上显示的特定产品ID,以下代码会将按钮从“选择选项”更改为“立即购买”:
add_filter( 'woocommerce_product_add_to_cart_text', 'custom_loop_add_to_cart_button', 20, 2 );
function custom_loop_add_to_cart_button( $button_text, $product ) {
// BELOW set the product categoty slug and the product ID
if( is_product_category('clothing') && $product->get_id() == '40' ) {
$button_text = __("Buy Now", "woocommerce");
}
return $button_text;
}
代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。
此处的产品ID 40
是“服装”产品类别页面上该行的第二个: