18 January 2020

How to check if Order Contains Product ID in woocommerce (if product is buy)?

Check if Order Contains Product ID in woocommerce



add_action( 'woocommerce_thankyou', 'codekit_check_order_product_id' );
 
function codekit_check_order_product_id( $order_id ){
$order = wc_get_order( $order_id );
$items = $order->get_items();
foreach ( $items as $item_id => $item ) {
   $product_id = $item->get_variation_id() ? $item->get_variation_id() : $item->get_product_id();
   if ( $product_id === ABC ) {
       // do something
   }
}
}

No comments:

Post a Comment

How to create youtube videos slider with play and pause option in wordpress?

Create youtube videos slider with play and pause option in wordpress youtube videos slider Use this shortcode:- [punjab_today] function my_...