Aplicaciones de descuentos

En el siguiente tutorial, explicamos cómo hacer que las aplicaciones de descuento puedan mostrarse en tu diseño. 

HTML

Dentro del archivo snipplets/cart-totals.tpl  debemos modificar el siguiente código 

{% if promotion.discount_script_type == "NAtX%off" %}
    {{ promotion.selected_threshold.discount_decimal_percentage * 100 }}% OFF
{% else %}
	{{ "Promo" | translate }} {{ promotion.discount_script_type }}
{% endif %}

{{ "en" | translate }} {% if id == 'all' %}{{ "todos los productos" | translate }}{% else %}{{ promotion.scope_value_name }}{% endif %}

{% if promotion.discount_script_type == "NAtX%off" %}
	{{ "Comprando {1} o más" | translate(promotion.selected_threshold.quantity) }}
{% endif %}

Por este: 

{% if promotion.discount_script_type != "custom" %}
  {% if promotion.discount_script_type == "NAtX%off" %}
    {{ promotion.selected_threshold.discount_decimal_percentage * 100 }}% OFF
  {% else %}
    {{ "Promo" | translate }} {{ promotion.discount_script_type }}
  {% endif %}

  {{ "en" | translate }} {% if id == 'all' %}{{ "todos los productos" | translate }}{% else %}{{ promotion.scope_value_name }}{% endif %}

  {% if promotion.discount_script_type == "NAtX%off" %}
    {{ "Comprando {1} o más" | translate(promotion.selected_threshold.quantity) }}
  {% endif %}
{% else %}
  {{ promotion.scope_value_name }}
{% endif %}