% on products

% on products

Sim2
Visitor
3 0 0

How to show the discount % on products?

I use "forge" theme.

www.boutiquesimeone.com

Replies 2 (2)

Small_Task_Help
Shopify Partner
771 25 68

Hi,

 

You need to work on Liquid and CSS 

Example of liquid will be used in product template 

{% if product.compare_at_price > product.price %}
  {% assign discount_percent = ((product.compare_at_price - product.price) / product.compare_at_price) * 100 | money_without_currency %}
  <span class="discount-percentage">Save {{ discount_percent }}%</span>
{% endif %}

 

Note - First, decide how you want to calculate the discount percentage.

To Get Shopify Experts Help, E-mail - hi@ecommercesmalltask.com
About Us - We are Shopify Expert Agency
At Google My Business - Ecommerce Small Task - Hire Shopify Developers Ahmedabad
Sim2
Visitor
3 0 0

I want to be calculated automatically as I already created many automatic discounts.
where should I past this code?