大家好,我一直在努力将按钮文本从“立即购买”更改为“添加到报价”,但无法弄清楚。
我在 WordPress 上使用 WoodMart 主题和 WooCommerce。我试图更改的按钮是当您将鼠标悬停在产品上时出现的按钮。有人可以帮忙吗?
我已经尝试了所有在线文档
有多种方法可以做到这一点。我更喜欢代码级别,而不是添加第三方插件的过多负载。
函数.php
<?php
// Change add to cart text on single product page
add_filter( 'woocommerce_product_single_add_to_cart_text', 'woocommerce_add_to_cart_button_text_single' );
function woocommerce_add_to_cart_button_text_single() {
return __( 'Add to Cart Button Text', 'woocommerce' );
}
// Change add to cart text on product archives page
add_filter( 'woocommerce_product_add_to_cart_text', 'woocommerce_add_to_cart_button_text_archives' );
function woocommerce_add_to_cart_button_text_archives() {
return __( 'Add to Cart Button Text', 'woocommerce' );
}
还有第三方插件可用参考