更改“查看购物车”按钮的文本-Woocommerce

时间:2019-01-14 15:10:23

标签: woocommerce

我已经在该论坛上尝试了类似问题的代码建议,以更改functions.php中“查看购物车”按钮的文本,但没有任何效果。我猜想在最新的WP和WC更新中,这些已贬值了。我正在使用WP 4.8.8和WC 3.5.3。任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:1)

如果找不到其他解决方案,可以尝试通过JS进行更改,例如:

$("a.added_to_cart.wc-forward").text('your new text')

更新:

您可以创建一个函数来加载此代码段,然后将其放入随页面加载的任何js文件中。

var changeCartName = function (){
  $("a.added_to_cart.wc-forward").text('your new text')
}
changeCartName()

答案 1 :(得分:0)

这对我有用

add_filter( 'gettext', function( $text ) {
if ( 'View cart' === $text ) {
    $text = 'View List';
}
return $text;
} );

您需要用现有文本替换View Cart,并用需要更新的文本替换View List。

woocommerce replace add to cart text