Example Website: https://snugshark.co/products/sharkblanket
My Website : https://charmente.com/
Hi @Simon159
To show the percentage discount instead of the sale badge follow the below steps
From
{%- if show_badges -%}
{{ 'products.product.on_sale' | t }}
{{ 'products.product.sold_out' | t }}
{%- endif -%}
to
{%- if show_badges -%}
{{ product.compare_at_price_max | minus: product.price | times: 100.0 | divided_by: product.compare_at_price_max | money_without_currency | times: 100 | remove: '.0'}}% OFF
{{ 'products.product.sold_out' | t }}
{%- endif -%}
And add below CSS code to component-price.css
.price__badge-sale svg {
height: 10px;
}