PHP
- 1 ответ
- 0 вопросов
1
Вклад в тег
$data['special'] = $this->currency->format($this->tax->calculate($product_info['special'], $product_info['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']);
Добавить после:$data['discount_amount'] = $this->currency->format($this->tax->calculate(($product_info['price'] - $product_info['special']), $product_info['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']);
<li>
<h2><?php echo $special; ?></h2>
</li>
Добавить после:<li class="discount_amount">
<?php echo 'Вы экономите '.$discount_amount; ?>
</li>
$special = $this->currency->format($this->tax->calculate($result['special'], $result['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']);
Добавить после:$discount_amount = $this->currency->format($this->tax->calculate(($result['price'] - $result['special']), $result['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']);
Найти:'price' => $price,
'special' => $special,
Добавить после:'discount_amount' => $discount_amount,
<span class="price-new"><?php echo $product['special']; ?></span> <span class="price-old"><?php echo $product['price']; ?></span>
Добавить после:<span class="discount_amount"><?php echo 'Вы экономите '.$product['discount_amount']; ?></span>