How to display accurate discount percentage on product variants in Sense Theme?

Hi guys

Anyone can help me with the code to display discount percentage (-% Off) on all sales products in product cards and product page?

I found other similar questions and solutions in this forum but the problem with them is that if I have several variants of a product and only one of them is on sale it shows the % amount for the compare price of the variant on sale with the lowest other variant price of that product what gives a wrong discount percentage amount.

I need to show the percentage relation of the compare price and original price for the specific variant that is on sale.

Thank you so much

Use this code, wherever in PDP you want to show the percentage

{{ 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

Thank you for trying but this code doesn’t work. Gives always a value of 0%

I want to show discount percentage of a specific variant.

product.price gets the value from witch variant? It should pick the original price of the variant that is on sale.