I am using WooCommerce for WordPress and I\'m listing items excluding Tax.
I need to show separately the Price (without tax), the Tax and t
WooCommerce v3.0.0 and Later
As of WooCommerce version 3.0, the function woocommerce_price() is deprecated, as is the method get_price_including_tax(). Instead, you should use wc_get_price_including_tax:
Prior to WooCommerce v3.0.0
You need to modify a template. Do not modify the core WooCommerce template, but rather make a copy of it to your theme, using the WooCommerce template override system. For help with that, refer to the WooCommerce docs on using the template override system.
In the price.php template, you will add this bit of code where you want the price, including tax (VAT):
get_price_including_tax() ); ?>
Note: the price.php template that you modify should be located here in wp-content/themes/[your theme folder]/woocommerce/single-product/price.php