Change "Sale" Badge To "xxx% off" in Refresh Theme

Hi @patrickscheper

1: Online store > themes > Actions > Edit code > Snippets > price.liquid

2: find code ’ {{ ‘products.product.on_sale’ | t }} ’

3: replace code

before

{{ 'products.product.on_sale' | t }}

after

{% comment %}
      {{ 'products.product.on_sale' | t }} 
      {% endcomment %}
      {{product.compare_at_price | minus: product.price | times: 100 | divided_by:  product.compare_at_price }}% off