当前按钮显示"更新购物袋",我试图找出如何让它说'&34;更新购物车"。当商品在购物车中时,此按钮在购物车中可见。
我设法改变了所有其他按钮,说" Add to Bag"到了#34;加入购物车",但是这个让我感到沮丧。
有人知道如何在woo commerce中做到这一点吗?
答案 0 :(得分:1)
该文本在cart.php
文件夹的yourtheme/woocommerce/cart
文件中设置。它在线~160
<input type="submit" class="update-button button" name="update_cart" value="<?php _e('Update Shopping Bag', 'theretailer'); ?>" />
将Update Shopping Bag
更改为Update shopping cart
应该为您更改。