是否可以更改WooCommerce购物车页面上add_fee
值的顺序?
这是我的代码:
if ($cityTax > 0) {
$woocommerce->cart->add_fee(__('City Tax', 'woocommerce'), $cityTax);
}
if ($stateTax > 0) {
$woocommerce->cart->add_fee(__('State Tax', 'woocommerce'), $stateTax);
}
if ($countyTax >0 ) {
$woocommerce->cart->add_fee(__('Country Tax', 'woocommerce'), $countyTax);
}
我可以设置他们在购物车页面上显示的顺序吗?