我无法更改网站上购物车页面中的措辞。由于我的商店在澳大利亚,我想将命名惯例从Tax更改为GST。我更改了语言文件(/wp-content/plugins/woocommerce/i18n/languages/woocommerce.pot),但它根本没有影响我的商店。
有没有人有另一种改变购物车页面内措辞的方法?我可以在/ wp-content / themes / mytheme / woocommerce /中编辑任何PHP文件吗?
答案 0 :(得分:0)
将税总额显示为单一总额
add_filter( 'woocommerce_countries_tax_or_vat', function () {
return __( 'GST', 'woocommerce' );
});
另一个例子
add_filter( 'woocommerce_countries_inc_tax_or_vat', function () {
return __( 'GST', 'woocommerce' );
});
add_filter( 'woocommerce_countries_ex_tax_or_vat', function () {
return __( 'GST', 'woocommerce' );
});
答案 1 :(得分:0)
替换 WooCommerce 购物车和结帐页面中的“Includes $xx.xx Tax”
在您的主题的functions.php 文件中包含以下代码:
site.webmanifest
答案 2 :(得分:-1)
终于得到了同样的问题:
要修改的文件位于“includes> class-wc-countries.php”