skip to Main Content

Woocommerce – Set notification if is two product category in cart

I'm trying to set notifications when I have products from these two different categories inside the card in WooCommerce. This is the code which I using: add_action( 'woocommerce_checkout_before_customer_details', 'webroom_check_if_product_category_is_in_cart' ); function webroom_check_if_product_category_is_in_cart() { $cat_in_cart = false; foreach ( WC()->cart->get_cart() as…

VIEW QUESTION
Back To Top
Search