Jump to content

Etiqueta de "descuento" en los thumbnails


mkwpfan

Recommended Posts

Hola,

 

cuando pongo los productos en descuento, dentro de la ficha del producto, en la imagen del producto aparece una etiqueta en la esquina que pone "Descuento". Estoy intentando que esa etiqueta se vea también en los thumbnails.

 

Dejo los enlaces a la página donde estoy intentando hacer eso.

 

Página de promotions: http://sexyme.ie/prices-drop

Ficha de producto con la etiqueta descuento: http://sexyme.ie/bondage/170-lux-fetish-paddle.html

Link to comment
Share on other sites

He conseguido añadir la etiqueta añadiendo el siguiente código

<img src="{$img_dir}discount_{$lang_iso}.png" alt="{l s='Reduced price !'}" class="reduction_img"/>

en product-list.tpl de mi template

 

Queda así;

{if isset($product.show_price) && $product.show_price}
   <span class="price">{if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if}</span>
   {if isset($product.on_sale) && $product.on_sale OR isset($product.reduction) && $product.reduction}<span class="old_price">{convertPrice price=$product.price_without_reduction}</span><img src="{$img_dir}discount_{$lang_iso}.png" alt="{l s='Reduced price !'}" class="reduction_img"/>{/if}
   {if isset($product.on_sale) && $product.on_sale && isset($product.show_price) && $product.show_price && !$PS_CATALOG_MODE}<span class="reduction">({if $specific_prices.reduction_type == 'percentage'}-{$specific_prices.reduction*100}%{/if}{if $specific_prices.reduction_type == 'amount'}-{$specific_prices.reduction|round:2}{$currency->sign}{/if})</span>
   {elseif isset($product.reduction) && $product.reduction && isset($product.show_price) && $product.show_price && !$PS_CATALOG_MODE}<span class="reduction">({if $specific_prices.reduction_type == 'percentage'}-{$specific_prices.reduction*100}%{/if}{if $specific_prices.reduction_type == 'amount'}-{$specific_prices.reduction|round:2}{$currency->sign}{/if})</span>{/if}
  {/if}

 

 

La imagen se ve algo grande, pero funciona

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...