Hide cart icon and badge count after logging out (#11530)

diff --git a/erpnext/public/js/shopping_cart.js b/erpnext/public/js/shopping_cart.js
index e4e7440..0a3e0af 100644
--- a/erpnext/public/js/shopping_cart.js
+++ b/erpnext/public/js/shopping_cart.js
@@ -65,6 +65,9 @@
 
 	set_cart_count: function() {
 		var cart_count = getCookie("cart_count");
+		if(frappe.session.user==="Guest") {
+			cart_count = 0;
+		}
 
 		if(cart_count) {
 			$(".shopping-cart").toggleClass('hidden', false);