Hello,
I would like to be able to remove the count from the shopping cart icon.
I am using Shopify’s Ride theme.
URL of my ecommerce: ilboomdelpanino.myshopify.com
Vincenzo
Hello,
I would like to be able to remove the count from the shopping cart icon.
I am using Shopify’s Ride theme.
URL of my ecommerce: ilboomdelpanino.myshopify.com
Vincenzo
Hello @Ilboom ,
By count you means this or not?
So that I will check and let you know the exact solution here.
Hey @Ilboom
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hello there,
Online Store ->Theme ->Edit code
Assets ->Base.css
/* Hide shopping cart count */
.site-header__cart-count {
display: none !important;
}
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
@Moeed with your instructions, the product count (the number above the shopping cart logo) has disappeared;
however, I would like a coloured dot to appear when the shopping cart is full
@topnewyork with your instructions did not work
Hi @Ilboom ,
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file theme.liquid
Step 3: Paste the below code at the bottom of the file → Save
Hope my solution works perfectly for you!
Best regards,
Oliver | PageFly
HI @Danishshopdev THANK YOU for your reply.
premised that in the top right-hand corner above the shopping basket logo (symbol) there is a coloured dot with a number inside: this number represents the sum of the products in the basket.
This number represents the sum of the products in the shopping cart. I would like to make this number disappear, but ATTENTION, only the number inside the dot: I want the coloured dot to appear so as to provide a visual signal indicating the presence of products in the shopping cart.
By inserting this portion of code into the theme.liquid file, the number inside the coloured dot disappears; however, I would like the coloured dot to remain present when the products is present inside for cart. How can I make only the number disappear?
Hey @Ilboom
Try this code with the same steps mentioned above
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hello there,
.cart-count-bubble span{
display: none !important;
}
Thanks