在Woocommerce产品类别页面中更改特定的产品按钮文本

时间:2018-09-06 19:44:28

标签: php wordpress woocommerce product custom-taxonomy

对于在WooCommerce中特定存档类别页面上显示的特定可变产品,如何将“选择选项”按钮更改为“立即购买”按钮?

要在特定产品类别页面上更改的“选择选项”按钮:

The Select Options button

1 个答案:

答案 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 是“服装”产品类别页面上该行的第二个:

enter image description here