wc_product_dimensions_enabled()WC 1.0

Returns whether or not product dimensions (HxWxD) are enabled.

Hooks from the function

Returns

true|false.

Usage

wc_product_dimensions_enabled();

wc_product_dimensions_enabled() code WC 10.3.3

function wc_product_dimensions_enabled() {
	return apply_filters( 'wc_product_dimensions_enabled', true );
}