![How To Show Discount on Product Page [Taste Theme]](/_astro/how-to-show-discount-on-product-page-taste-theme.MFaO8q7A_Z1IjPX7.webp)
Hey everyone, in this video tutorial we’re going to show you how to show a discount on your product page using the Taste theme.
This is a really great way to increase conversions and let your customers know that they’re getting a good deal. So let’s get started!
Price.liquid Code Update
Replace Line no. 85-86 in Price.liquid File with the following code:
<span class="badge price__badge-sale color-{{ settings.sale_badge_color_scheme }}">
-{{ compare_at_price | minus: price | times: 100 | divided_by: compare_at_price }}% OFF
</span>
Card-product.liquid Code Update
Replace Line no. 127-132 with the following code:
<span class="badge price__badge-sale color-{{ settings.sale_badge_color_scheme }}">
-{{ card_product.compare_at_price | minus: card_product.price | times: 100 | divided_by: card_product.compare_at_price }}% OFF
</span>
Base.css Code
Add the following on the bottom of the base.css file:
.card__badge .badge{
border-radius: 0;
font-size: 13px;
background-color: red;
font-weight: bold;
border: none;
}
.price .price__badge-sale {
border-radius: 0;
font-size: 13px;
background-color: red;
font-weight: bold;
border: none;
margin-top: 0 !important;
margin-bottom: 0 !important;
}

![[FREE] - How To Add Volume Discount in Shopify with Sale Badge](/_astro/_FREE_%20-%20How%20To%20Add%20Volume%20Discount%20in%20Shopify%20with%20Sale%20Badge.DeAH13EL_WMT7r.webp)
![GPT-6 Astra + OpenCode - 3D WordPress Websites [This is INSANE]](/_astro/GPT-6%20Astra%20_%20OpenCode%20-%203D%20WordPress%20Websites%20_This%20is%20INSANE_.CFF0euP5_3Xbbj.webp)
![Image related to how to show discount on product page [taste theme]](/_astro/how-to-show-discount-on-product-page-taste-theme.MFaO8q7A_Zj3xHt.webp)

