在Woocommerce中税率为0%时显示税线 [英] Show the tax line when rate is 0% in Woocommerce

查看:251
本文介绍了在Woocommerce中税率为0%时显示税线的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在将WooCommerce的版本从很旧的版本更新到最新版本.我已经注意到,当使用选项显示税收总额:逐项列出"时,税收"名称不再显示在购物车"页面,结帐"页面以及所有客户电子邮件,发票等中的小计"行中.

I’m updating to the latest version of WooCommerce from a very old version. I have noticed that when using the option "Display tax totals: Itemized", the Tax name is not displayed anymore in the Sub Total line included in Cart page, Checkout page and in any customer e-mail, invoice, etc.

原因似乎是,如果将税率设置为0.0000%,则新版本的WooCommerce会自动在总计"之后隐藏该行,如下所示:

The reason appears to be that if the Tax rate is set to 0.0000%, the new version of WooCommerce automatically hides that line after the Sub Total, look below:

如果我将利率设置为1.0000%或其他,它将显示.这正是我希望显示的方式,如下所示:

If I set rates to 1.0000% or whatever, it appears. This exactly the way I want things to be displayed, look below:

问题是我需要显示这些信息,由于增值税的实行机制(请参见截图),我的商店中的增值税率始终为0%,但是取决于客户所在的国家/地区需要写出正在使用的税收抵免,而我使用的是税收名称.

The problem is that I need that information to be displayed, the VAT rates in my store are always 0% due to a VAT extemption regime (see screenshot), but depending on the customer country I need to write what Tax extemption is being used, and I’m using the Tax name for that.

有什么想法可以强制显示税名,即使费率设置为0.0000%?

Any ideas to force the displaying of the Tax name even if the rate is set at 0.0000%?

如果这不可能,那么如何创建一个带有税名的简码,以便至少可以在我的订单发票,电子邮件等中使用它?

If that is not possible, how can I create a shortcode with the Tax name so I can use it at least in my order invoice, emails, etc.?

推荐答案

解决方案非常简单,只需一行.即使税率是 0% ,它也会显示税线.试试这个:

The solution is very simple, just one line. It will display tax line, even if the tax rate is 0%. Try this:

add_filter( 'woocommerce_cart_hide_zero_taxes', '__return_false' ); 

以及可选的订单:

add_filter( 'woocommerce_order_hide_zero_taxes', '__return_false' );

代码进入您的活动子主题(或活动主题)的function.php文件中.经过测试,可以正常工作.

Code goes in function.php file of your active child theme (or active theme). Tested and works.

还有

这篇关于在Woocommerce中税率为0%时显示税线的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆