Home

Published

- 1 min read

woocommerce check if product is variable

img of woocommerce check if product is variable

The solution for this is noted below

woocommerce check if product is variable

Solution

   global $product;

// $product->is_type( $type ) checks the product type, string/array $type ( 'simple', 'grouped', 'variable', 'external' ), returns boolean

if ( $product->is_type( 'variable' ) ) {}

Try other methods by searching on the site. That is if this doesn’t work