digisavvy
9/11/2015 - 6:32 AM

Check WooCommerce Product Type

Check WooCommerce Product Type

<?php

 if( $product->is_type( 'simple' ) ){
     echo "is simple product";
  } elseif( $product->is_type( 'variable' ) ){
      echo "is variable";
  } elseif( $product->is_type( 'composite' ) ){
     echo "is composite";
  } else {
	 echo "derpage";
	}
	
?>