Version 1.5.1.3.1 de
	
	
	
		
		
		
		
	
	
bu şekil olması için
catalog\view\theme\temanız\template\product\product.tpl de aşağıdaki kodu
	
	
	
		Kod:
	
	
		<div class="price"><?php echo $text_price; ?>
        <?php if (!$special) { ?>
        <?php echo $price; ?>
        <?php } else { ?>
        <span class="price-old"><?php echo $price; ?></span> <span class="price-new"><?php echo $special; ?></span>
        <?php } ?>
        <br />
        <?php if ($tax) { ?>
        <span class="price-tax"><?php echo $text_tax; ?> <?php echo $tax; ?></span><br />
        <?php } ?>
        <?php if ($points) { ?>
        <span class="reward"><small><?php echo $text_points; ?> <?php echo $points; ?></small></span> <br />
        <?php } ?>
        <?php if ($discounts) { ?>
        <br />
        <div class="discount">
          <?php foreach ($discounts as $discount) { ?>
          <?php echo sprintf($text_discount, $discount['quantity'], $discount['price']); ?><br />
          <?php } ?>
        </div>
        <?php } ?>
      </div>
	 
 
bul aşağıdaki ile değiştir
	
	
	
		Kod:
	
	
		<div class="price"><?php echo $text_price; ?>
        <?php if (!$special) { ?>
        <?php echo $tax; ?>
        <?php } else { ?>
        <span class="price-old"><?php echo $price; ?></span> <span class="price-new"><?php echo $special; ?></span>
        <?php } ?>
        <br />
        <?php if ($tax) { ?>
        <span class="price-tax"><?php echo $text_tax; ?> <?php echo $price; ?></span><br />
        <?php } ?>
        <?php if ($points) { ?>
        <span class="reward"><small><?php echo $text_points; ?> <?php echo $points; ?></small></span> <br />
        <?php } ?>
        <?php if ($discounts) { ?>
        <br />
        <div class="discount">
          <?php foreach ($discounts as $discount) { ?>
          <?php echo sprintf($text_discount, $discount['quantity'], $discount['price']); ?><br />
          <?php } ?>
        </div>
        <?php } ?>
      </div>
	 
 
bu kod ile değiştirirseniz gayet pratik bir şekilde yaparsınız hem kdv siz fiyatı üste alırsınız hemde css de değişiklik yapmadan kdv siz fiyat kalın yazar.
Sonrada \catalog\language\turkish\product\product.php de
	
	
	
		Kod:
	
	
		$_['text_tax']          = 'KDV Hariç:';
	 
 
bul aşağıdaki ile değiştir
	
	
	
		Kod:
	
	
		$_['text_tax']          = 'KDV Dahil:';
	 
 
	
		
			
				LG700' Alıntı:
			
		
	
	
		
		
			
	
		
			
				turkuaz' Alıntı:
			
		
	
	
Bende bu şekilde yapmak istiyorum. nasıl yapabilirim acaba yardımcı olabilicek varmı?
örnek;
ana sayfa da
50.00TL +KDV yazıcak
ürün sayfasında
50.00TL +KDV
59.00TL
şeklinde listelemek istiyorum.
ana sayfada KDV siz fiyatı göstermek istiyorum.
		
 
		
	 
Ana sayfada hangi modüldeki fiyatı böyle göstermek istiyorsunuz?
-Yeni Ürünler
-Sizin için Seçtiklerimiz
-Kampanyalı Ürünler
Bunlardan hangisinde fiyatı KDV siz göstermek istiyorsunuz?