Answers for "woocomerce check if id is products or variations"

0

woocommerce check if product is variable

global $product;

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

if ( $product->is_type( 'variable' ) ) {}
Posted by: Guest on January-21-2021
0

check if a customer bought the product woocommerce

wc_customer_bought_product(  $customer_email,  $user_id,  $product_id );
Posted by: Guest on January-06-2022

Code answers related to "woocomerce check if id is products or variations"

Browse Popular Code Answers by Language