Duus
1
So I got the sale badge removed from the main page by adding
.card__badge.bottom.left {
display: none !important;
}
But It still appers at the product page, can anyone help me to remove it from there allso?
And I would like to remove the crossed over compare price from everywhere?
I use the Sense Theme
Thank you
1 Like
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > base.css and paste this at the bottom of the file:
.card__badge.bottom.left {
display: none!important;
}
.badge.price__badge-sale.color-accent-2 {
display: none;
}
1 Like
Use this code
.product__sale-badge {
display: none !important;
}
.product__compare-price {
display: none !important;
}
Duus
4
Thank you very much!
Where should I put this? :
.product__compare-price { display: none !important; }
Duus
5
Thank you very much!
That solves the problem with the badge.
Can you help me with removing the compare prices?
The price with the line through it?
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > base.css and paste this at the bottom of the file:
s.price-item.price-item--regular {
display: none;
}
1 Like
Hi @Duus
This is Richard from PageFly - Shopify Page Builder App, Iād like to suggest this idea:
Online Store ->Theme ->Edit code
Assets ->component-price.css
.price--on-sale .price-item--regular {
display: none !important;
}
Hope you find my answer helpful!
Best regards,
Richard | PageFly