如何在商店页面的WooCommerce中将添加到购物车按钮的文本更改为“+”? 所以所有添加到购物车按钮都说“+”而不是“添加到购物车”!
答案 0 :(得分:5)
要更改商店页面的添加到购物车按钮文字,您必须使用woocommerce_product_add_to_cart_text
过滤器。
以下是代码:
add_filter('woocommerce_product_add_to_cart_text', 'wh_archive_custom_cart_button_text'); // 2.1 +
function wh_archive_custom_cart_button_text()
{
return __('+', 'woocommerce');
}
代码进入您的活动子主题(或主题)的functions.php
文件。或者也可以在任何插件php文件中。
代码已经过测试并且有效。
官方文件:Change add to cart button text
希望这有帮助!