fix: item group not disaplying in the website if shopping cart is disabled
diff --git a/erpnext/setup/doctype/item_group/item_group.py b/erpnext/setup/doctype/item_group/item_group.py
index 37df150..cab2116 100644
--- a/erpnext/setup/doctype/item_group/item_group.py
+++ b/erpnext/setup/doctype/item_group/item_group.py
@@ -113,8 +113,9 @@
data = frappe.db.sql(query, {"product_group": product_group,"search": search, "today": nowdate()}, as_dict=1)
data = adjust_qty_for_expired_items(data)
- for item in data:
- set_product_info_for_website(item)
+ if cint(frappe.db.get_single_value("Shopping Cart Settings", "enabled")):
+ for item in data:
+ set_product_info_for_website(item)
return data