Hello community, I would like to know if someone has managed to change the “Sale Tag” to “Percentage” could you help me with that. I have read some similar topics but I can’t do it.
Thank you.
Hello community, I would like to know if someone has managed to change the “Sale Tag” to “Percentage” could you help me with that. I have read some similar topics but I can’t do it.
Thank you.
@AdolfoCV - you will need to change code in this sale tag to calculate % and display it… this will need code editing in product template
Hello, do you know in which liquid file is changed?, and what part of the code should be changed?
@AdolfoCV _ i think 2 files .. 1 is product template for product page and grid item for collection page
you will need to debug a bit, but can check these files
ok, do you have the code done? to test it?
PARA LOS PRODUCTOS EN EL EN GALERIA - CARD-PRODUCT.LIQUID
<span
id=“Badge-{{ section_id }}-{{ card_product.id }}”
class=“badge badge–bottom-left color-{{ settings.sale_badge_color_scheme }}”
{% comment %}
{{ ‘products.product.on_sale’ | t }}
{% endcomment %}
{{card_product.compare_at_price | minus: card_product.price | times: 100 | divided_by: card_product.compare_at_price }}% off
PARA EL PRODUCTO se cambia en price.liquid
{%- if show_badges -%}// se cambia esta linea ( {{ ‘products.product.on_sale’ | t }})
{{product.compare_at_price | minus: product.price | times: 100 | divided_by: product.compare_at_price }}% off