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.
Return
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 8.0.2
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' ); }