Percentage pill on products instead of sale pill

  1. open Your Store
    see Screenshote:->
    https://prnt.sc/D2VewTnAnIxe

  2. Open Edit Code

see Screenshote
https://prnt.sc/PnWJ7B0ODXAf

  1. Search Price

https://prnt.sc/zGCsgnbh2Fyp

  1. This Code change New Code Like This

ScreenShote
https://prnt.sc/DTpB3V52_bhn

remove this code.

{% if product.compare_at_price > product.price and product.available %}
    
      {% if product.compare_at_price_max > product.price -%}
        -
        {{-
          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'
        -}}
        %
      {%- endif %}
    

  {% else %}
    
      {{ 'products.product.sold_out' | t }}
    
  {% endif %}

Add This Code

{%- if show_badges -%}
    
      {{ 'products.product.on_sale' | t }}
    

    
      {{ 'products.product.sold_out' | t }}
    
  {%- endif -%}

Like This Screenshote==>

https://prnt.sc/otelQHofGxyN