greatwitenorth / quantities-and-units-for-woocommerce

Add unit support to items and allow decimal quantities in WooCommerce.
GNU General Public License v2.0
9 stars 18 forks source link

Solve warning accessing product type #16

Open jorgepcbraz opened 4 years ago

jorgepcbraz commented 4 years ago

Hi, in

you were calling if( $product->product_type != 'simple' ) { return $default; }

and that should be corrected to if( $product->is_type( 'simple' ) ) { return $default; }

I will create a PR to solve this