在商店页面上更改产品价格上的ADD TO CART按钮文本

时间:2017-04-20 10:33:08

标签: php wordpress woocommerce product hook-woocommerce

在WooCommerce中我们可以更改商店页面上产品价格附近的“添加到购物车”按钮文本吗?

我附上了图片: See image

1 个答案:

答案 0 :(得分:1)

您可以轻松完成过滤。请试试这个。

add_filter( 'woocommerce_product_add_to_cart_text', 'my_custom_cart_button_text', 10 );
function my_custom_cart_button_text() {

global $product;
    if (@$product->product_type == 'simple') {
        return __(get_woocommerce_currency_symbol().@$product->price, 'woocommerce');
    } else {
        // If needed the default behavior for all other products:
        // return __('My default text', 'woocommerce');
    }
}