WC_Cart::get_tax_price_display_mode
Returns 'incl' if tax should be included in cart, otherwise returns 'excl'.
Method of the class: WC_Cart{}
No Hooks.
Returns
String.
Usage
$WC_Cart = new WC_Cart(); $WC_Cart->get_tax_price_display_mode();
WC_Cart::get_tax_price_display_mode() WC Cart::get tax price display mode code WC 10.7.0
public function get_tax_price_display_mode() {
if ( $this->get_customer() && $this->get_customer()->get_is_vat_exempt() ) {
return 'excl';
}
return get_option( 'woocommerce_tax_display_cart' );
}