WC_Cart::get_tax_price_display_mode()publicWC 1.0

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() code WC 8.6.1

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