WC_Cart::needs_shipping_address()

Should the shipping address form be shown.


Description Description


Return Return

(bool)


Top ↑

Source Source

File: includes/class-wc-cart.php

	public function needs_shipping_address() {
		return apply_filters( 'woocommerce_cart_needs_shipping_address', true === $this->needs_shipping() && ! wc_ship_to_billing_address_only() );
	}


Top ↑

User Contributed Notes User Contributed Notes

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