mirac
OpenCart-TR
- Katılım
- 7 Şub 2010
- Mesajlar
- 1,383
- Tepkime puanı
- 0
- Puanları
- 36
- Yaş
- 43
- Konum
- Beykoz____
- Web sitesi
- www.notebook-cantasi.com
RE: ürün sayfasında fiyat ve kdv hariç fiyat gösterimi?
Bir kod buldum şimdilik 146 ve 148 de test ettim çalışıyor.. Anasayfaya uyarlayamadım.. Şimdilik bu var yanii
catalog/controller/product/product.php aç..
Bul..
Altına ekle..
catalog/view/theme/Kullandığın Tema/template/product/product.tpl
Bul..
Altına Ekle..
sistem/genel ayarlar/seçenekler den Vergi Oranlarını Gösteri evet yapınız..
Bir kod buldum şimdilik 146 ve 148 de test ettim çalışıyor.. Anasayfaya uyarlayamadım.. Şimdilik bu var yanii
catalog/controller/product/product.php aç..
Bul..
Kod:
else {
$this->data['price'] = $this->currency->format($this->tax->calculate($product_info['price'], $product_info['tax_class_id'], $this->config->get('config_tax')));
Altına ekle..
Kod:
//### CUSTOM ### price exc vat
$this->data['price_exvat'] = $this->currency->format($this->tax->calculate($product_info['price'], 0, 0));
catalog/view/theme/Kullandığın Tema/template/product/product.tpl
Bul..
Kod:
<td><b><?php echo $text_price; ?></b></td>
<td><?php if (!$special) { ?>
<?php echo $price; ?>
Altına Ekle..
Kod:
(<?php echo $price_exvat; ?> + KDV Hariç)
sistem/genel ayarlar/seçenekler den Vergi Oranlarını Gösteri evet yapınız..