joseangelcadiz Posted May 29, 2023 Share Posted May 29, 2023 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? Link to comment Share on other sites More sharing options...
bera_ramazan Posted May 29, 2023 Share Posted May 29, 2023 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 More sharing options...
bera_ramazan Posted May 29, 2023 Share Posted May 29, 2023 if not, he may not have made a wrong translation in the translations section, check it out 1 Link to comment Share on other sites More sharing options...
joseangelcadiz Posted May 29, 2023 Author Share Posted May 29, 2023 nada, sigue igual, el product-prices.tpl estaba exactamente igual, y en traducciones no veo nada que refleje el error. 😥 Link to comment Share on other sites More sharing options...
bera_ramazan Posted May 29, 2023 Share Posted May 29, 2023 {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 More sharing options...
joseangelcadiz Posted May 29, 2023 Author Share Posted May 29, 2023 adjunto imagen de como tengo el archivo product-prices.tpl . No he modificado nada, venia así por defecto en el tema, aún así he borrado el archivo, restaurado nuevo y borrado caché y sigue igual. Link to comment Share on other sites More sharing options...
joseangelcadiz Posted May 29, 2023 Author Share Posted May 29, 2023 En la traducción pone ´´Guardar %porcentaje%´´ ¿ debería poner otra cosa ? Link to comment Share on other sites More sharing options...
juanrojas Posted May 29, 2023 Share Posted May 29, 2023 hace 21 minutos, joseangelcadiz dijo: En la traducción pone ´´Guardar %porcentaje%´´ ¿ debería poner otra cosa ? intentalo pero sin traducir lo que se encuentra entre los %% 1 Link to comment Share on other sites More sharing options...
joseangelcadiz Posted May 31, 2023 Author Share Posted May 31, 2023 Ahora sí funciona, muchas gracias. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now