File manager - Edit - /home/jardides/www/Jardi-design/old/components/com_j2store/templates/bootstrap3/default_price.php
Back
<?php /** * @package J2Store * @copyright Copyright (c)2014-17 Ramesh Elamathi / J2Store.org * @license GNU GPL v3 or later */ // No direct access defined('_JEXEC') or die; ?> <?php echo J2Store::plugin()->eventWithHtml('BeforeRenderingProductPrice', array($this->product)); ?> <?php if($this->params->get('list_show_product_base_price', 1) || $this->params->get('list_show_product_special_price', 1)): ?> <div itemprop="offers" itemscope itemtype="https://schema.org/Offer" class="product-price-container"> <?php if($this->params->get('list_show_product_base_price', 1) && $this->product->pricing->base_price != $this->product->pricing->price): ?> <?php $class='';?> <?php if(isset($this->product->pricing->is_discount_pricing_available)) $class='strike'; ?> <div class="base-price <?php echo $class?>"> <?php echo J2Store::product()->displayPrice($this->product->pricing->base_price, $this->product, $this->params);?> </div> <?php endif; ?> <?php if($this->params->get('list_show_product_special_price', 1)): ?> <div class="sale-price"> <?php echo J2Store::product()->displayPrice($this->product->pricing->price, $this->product, $this->params);?> </div> <?php endif; ?> <?php if($this->params->get('display_price_with_tax_info', 0) ): ?> <div class="tax-text"> <?php echo J2Store::product()->get_tax_text(); ?> </div> <?php endif; ?> <meta itemprop="price" content="<?php echo $this->product->pricing->price; ?>" /> <meta itemprop="priceCurrency" content="<?php echo $this->currency->getCode(); ?>" /> <link itemprop="availability" href="https://schema.org/<?php echo $this->product->variant->availability ? 'InStock':'OutOfStock'; ?>" /> </div> <?php endif; ?> <?php echo J2Store::plugin()->eventWithHtml('AfterRenderingProductPrice', array($this->product)); ?> <?php if($this->params->get('list_show_discount_percentage', 1) && isset($this->product->pricing->is_discount_pricing_available)): ?> <?php $discount =(1 - ($this->product->pricing->price / $this->product->pricing->base_price) ) * 100; ?> <?php if($discount > 0): ?> <div class="discount-percentage"> <?php echo round($discount).' % '.JText::_('J2STORE_PRODUCT_OFFER');?> </div> <?php endif; ?> <?php endif; ?>
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.01 |
proxy
|
phpinfo
|
Settings