WC_Shipping_Method::is_taxable()

Whether or not we need to calculate tax on top of the shipping rate.


Description Description


Return Return

(boolean)


Top ↑

Source Source

File: includes/abstracts/abstract-wc-shipping-method.php

	public function is_taxable() {
		return wc_tax_enabled() && 'taxable' === $this->tax_status && ( WC()->customer && ! WC()->customer->get_is_vat_exempt() );
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.