Created
June 27, 2014 17:57
-
-
Save patrickgilmour/9d4a28b4a2f0c1dcecbf to your computer and use it in GitHub Desktop.
WooCommerce conditional to test if a Product is Simple or Variable.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Is a WooCommerce Product Simple or Variable | |
* | |
* see http://wordpress.org/support/topic/condition-to-check-if-product-is-simple-or-variable | |
*/ | |
if( $product->is_type( 'simple' ) ){ | |
// a simple product | |
} elseif( $product->is_type( 'variable' ) ){ | |
// a variable product | |
} | |
// If you need a Product object for the above: | |
$product = new WC_Product( get_the_ID() ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How I change the below code to
' . sprintf( '%s × %s', $cart_item['quantity'], $product_price ) . '', $cart_item, $cart_item_key ); ?>Changes but not work.
is_type( 'simple' ) ){ // a simple product echo apply_filters( 'woocommerce_widget_cart_item_quantity', '' . sprintf( '%s × %s', $cart_item['quantity'], $product_price ) . '', $cart_item, $cart_item_key ); } else{ // a variable product apply_filters( 'woocommerce_widget_cart_item_quantity', '' . sprintf( $product_price ) . '', $cart_item, $cart_item_key ); } // If you need a Product object for the above: $product = new WC_Product( get_the_ID() ); ?>