• How am I supposed to do if a product is in this category should be displayed?

    woocommerce -> Cart

    My Code:

    if ( is_cart() ) {
    
      if ( is_cart(is_product_category( 'category_name1' )) ) {
        echo 'test';
      } elseif ( is_cart(is_product_category( 'category_name2' )) ) {
        echo 'test2';
      } else {
        echo 'test3';
      }
    
    }

  • The topic ‘Woocommerce cart problem’ is closed to new replies.