debreli
OpenCart-TR
edit yapılan dosyaların yedeğini alınız..
catalog/model/catalog/product.php aç
bul
sonrasına ekle
catalog/controller/product/product.php aç
bul
sonrosına ekle
bul
sonrasına ekle
catalog/view/theme/default/template/product/product.tpl aç
bul
sonrasına ekle
temanızın stylesheet.css dosynızı açın
bul
öncecine ekle
temanızın image klasörüne asağıdaki resimleri atın
catalog/model/catalog/product.php aç
bul
Kod:
'price' => ($query->row['discount'] ? $query->row['discount'] : $query->row['price']),
sonrasına ekle
Kod:
'discount' => $query->row['discount'],
'fiyat' =>$query->row['price'],
catalog/controller/product/product.php aç
bul
Kod:
$this->data['points'] = $product_info['points'];
sonrosına ekle
Kod:
$this->data['fiyat'] = $product_info['fiyat'];
bul
Kod:
$this->data['special'] = false;
}
sonrasına ekle
Kod:
if ((float)$product_info['discount']) {
$this->data['savings'] = round((($product_info['fiyat'] - $product_info['discount'])/$product_info['fiyat'])*100, 0);
$this->data['discount'] = $this->currency->format($this->tax->calculate($product_info['discount'], $product_info['tax_class_id'], $this->config->get('config_tax')));
} else {
$this->data['discount'] = false;
}
catalog/view/theme/default/template/product/product.tpl aç
bul
Kod:
<?php if (!$special) { ?>
<?php echo $price; ?>
sonrasına ekle
Kod:
<?php if (!$discount) { ?>
<?php } else { ?>
<span class="discountproduct"><p> <?php echo $savings; ?>%</p></span>
<?php } ?>
temanızın stylesheet.css dosynızı açın
bul
Kod:
.attribute {
öncecine ekle
Kod:
.product-info .discountproduct{
position:absolute;z-index: 99;
background: url('../image/indirim.png') no-repeat;
right:100px;
width: 98;
height: 92;
top:260px;
}
.product-info .discountproduct p{
padding:32px;
padding-left:32px;
padding-top:37px;
color: #fff;
font-size: 19px;
font-weight: bold;
}
.product-info .discountproduct:hover{
position:absolute;z-index: 99;
background: url('../image/indirim2.png') no-repeat;
right:100px;
width: 98;
height: 92;
top:260px;
}
temanızın image klasörüne asağıdaki resimleri atın