Holaa!!!! Ya lo introduje, pero creo que no ha surtido ningún efecto
Te dejo la página:
Te dejo el código cómo ha quedado:
{block name='product_price_and_shipping'}
{if $product.show_price}
{if $product.has_discount}
{$discountClass = "hasdiscount"}
{/if}
<div class="product-price-and-shipping {$discountClass}">
{hook h='displayProductPriceBlock' product=$product type="before_price"}
{if $product.has_discount}
{*hook h='displayProductPriceBlock' product=$product type="before_price"*}
{hook h='displayProductPriceBlock' product=$product type="old_price"}
<span class="sr-only">{l s='Regular price' d='Shop.Theme.Catalog'}</span>
<span class="regular-price">{$product.regular_price}</span>
<label class="label">{l s='IVA Incl.' d='Shop.Theme.Catalog'} </label>
{if $product.discount_type === 'percentage'}
<span class="discount-percentage discount-product">{$product.discount_percentage}</span>
{/if}
{if $product.discount_type === 'amount'}
<span class="discount-amount discount-product">{$product.discount_amount_to_display}</span>
{/if}
{/if}
{if $djv_flags.template.product.withtaxes}
<span class="with-taxes {if $product.has_discount}has-discount{/if}">
{*$product.price*}
{$decimales = $product.price|substr:-8}
{$enteros = $product.price|replace:$decimales:""}
{$enteros}<span class="decimales">{$decimales}</span>
<small> {l s=' (IVA inclu铆do)' d='Shop.Theme.Catalog'} </small>
</span>
{/if}
{if $djv_flags.template.product.withouttaxes}
<span class="without-taxes {if $product.has_discount}has-discount{/if}">
{$product.price_tax_exc|string_format:"%.2f"|replace:'.':','}
<small> {l s=' (sin IVA)' d='Shop.Theme.Catalog'} </small>
</span>
{/if}
{* // C贸digo original
<span class="sr-only">{l s='Price' d='Shop.Theme.Catalog'}</span>
<span itemprop="price" class="price">{$product.price}</span>
*}
{hook h='displayProductPriceBlock' product=$product type='unit_price'}
{hook h='displayProductPriceBlock' product=$product type='weight'}
</div>
{/if}
{/block}
MIL GRACIASSSS