debreli
OpenCart-TR
ilk önce sepette isim gösterme modunu uygulayın
http://forum.opencart-tr.com/thread-2095.html
sepetteki ürünün toplam sayısını göstern kod
catalog/controller/module/cart.php aç
bul
Kod:
$this->data['text_checkout'] = $this->language->get('text_checkout');
sonrasına ekle
Kod:
$this->data['text_items_count'] = $this->language->get('text_items_count');
language/turkis/module/cart.php aç
bul
Kod:
?>
öncesine ekle
Kod:
$_['text_items_count'] = 'Ürün var';
template/module/cart.tpl aç
bul
Kod:
<?php echo $text_greeting; ?>
Kod:
<a href="<?php echo $view; ?>"> (<strong><?php echo $this->cart->countProducts(); ?></strong>)</a> <?php echo $text_items_count; ?>