echo JeproshopValidator::convertPrice($product->price);
                } else {
                    echo JeproshopValidator::convertPrice($product->price_tax_exc);
                }
                ?>
						</span>
                        <meta itemprop="priceCurrency" content="<?php 
                echo $this->currency->iso_code;
                ?>
" />
                        <?php 
                if (isset($product->specific_prices) && $product->specific_prices && isset($product->specific_prices->reduction) && $product->specific_prices->reduction > 0) {
                    //{hook h="displayProductPriceBlock" product=$product type="old_price"}
                    ?>
                        <span class="old-price product-price"><?php 
                    echo JeproshopValidator::displayWtPrice($product->price_without_reduction);
                    ?>
</span>
                        <?php 
                    //{hook h="displayProductPriceBlock" id_product=$product.id_product type="old_price"}
                    ?>
                        <?php 
                    if ($product->specific_prices->reduction_type == 'percentage') {
                        ?>
                        <span class="price-percent-reduction">-<?php 
                        echo $product->specific_prices->reduction * 100;
                        ?>
%</span>
                        <?php 
                    }
                }