php WooCommerce:在购物车页面上的“包含$ xx.xx税”中替换“税”

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WooCommerce:在购物车页面上的“包含$ xx.xx税”中替换“税”相关的知识,希望对你有一定的参考价值。

<?php // Do not include this if already open! Code goes in theme functions.php.
/**
 * woocommerce_cart_totals_order_total_html
 *
 * @access      public
 * @since       1.0 
 * @return      void
*/
add_filter( 'woocommerce_cart_totals_order_total_html', 'woo_rename_tax_inc_cart', 10, 1 );

function woo_rename_tax_inc_cart( $value ) {
	$value = str_ireplace( 'Tax', 'GST', $value );
	return $value;
}

以上是关于php WooCommerce:在购物车页面上的“包含$ xx.xx税”中替换“税”的主要内容,如果未能解决你的问题,请参考以下文章