Jump to content

Etiqueta de descuento no muestra el descuento


Recommended Posts

Hola,

Estoy intentando aplicar descuentos a mis productos en mi tienda y me encuentro con el siguiente problema.

En la página del producto se aplica el porcentaje de manera adecuada, pero en lugar de aparecer el porcentaje junto al precio del producto aparece un texto "GUARDAR %PORCENTAJE%". 

En el listado de productos, cuando navegas por la web, sí que aparece el porcentaje, es dentro de la página del propio producto cuando aparece ese texto.

¿Dónde puedo hacer que aparezca el porcentaje aplicado?

image.png

Link to comment
Share on other sites

please edit

themes/catalog/_partials/product-prices.tpl

change this code

{if $product.has_discount}
            {if $product.discount_type === 'percentage'}
              <span class="discount discount-percentage">{l s='Save %percentage%' d='Shop.Theme.Catalog' sprintf=['%percentage%' => $product.discount_percentage_absolute]}</span>
            {else}
              <span class="discount discount-amount">
                  {l s='Save %amount%' d='Shop.Theme.Catalog' sprintf=['%amount%' => $product.discount_to_display]}
              </span>
            {/if}
          {/if}

 

Link to comment
Share on other sites

{if $product.has_discount}
            {if $product.discount_type === 'percentage'}
              <span class="discount discount-percentage">{l s='Price %percentage%' d='Shop.Theme.Catalog' sprintf=['%percentage%' => $product.discount_percentage_absolute]}</span>
            {else}
              <span class="discount discount-amount">
                  {l s='Price %amount%' d='Shop.Theme.Catalog' sprintf=['%amount%' => $product.discount_to_display]}
              </span>
            {/if}
          {/if}

please edit this and clear cache your site

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...