how can we make this function below to check multiple product ids instead of just one id, how can we convert it to array ?
add_action( 'woocommerce_before_cart', 'bbloomer_find_product_in_cart' );
function bbloomer_find_product_in_cart() {
$product_id = 17285;
$product_cart_id = WC()->cart->generate_cart_id( $product_id );
$in_cart = WC()->cart->find_product_in_cart( $product_cart_id );
if ( $in_cart ) {
$notice = 'DON't Forget to Apply the discount coupon code you received to complete purchasing with the discounted price';
wc_print_notice( $notice, 'notice' );
}
}
We tried $product_ids = array("17285", "17302");
// but it doesn’t work
we also tried this but not working too
add_filter( 'woocommerce_before_cart', 'ts_woocommerce_quantity_selected_numbe', 10, 2 );
function ts_woocommerce_quantity_selected_numbe( $product ) {
$product_ids = array("15757", "15758"); // Here the array of product Ids
if ( in_array( $product->get_id(), $product_ids ) ) {
// In cart
if ( ! is_cart() ) {
$notice = 'DON't Forget to Apply the discount coupon code you received to complete purchasing with the discounted price';
wc_print_notice( $notice, 'notice' );
}
}
}
2
Answers
For product id array which are in cart use this code,
To check cart items for one or multiple product Ids, displaying a notice, use instead:
Code goes in functions.php file of the active child theme (or active theme). Tested and works.