当前位置: 首页 > 知识库问答 >
问题:

更改商店页面上产品价格上的“添加到购物车”按钮文本[重复]

凤柏
2023-03-14

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

共有1个答案

房学
2023-03-14

你可以很容易地使用过滤器。请试试这个。

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');
    }
}
 类似资料: