Kategorilerde ki ürünlerde stok durumu nasıl ekleyebiliriz? |
Konuyu görüntüleyenler: 1 Misafir
|
%
|
|
Lakirti - 4014 - 1
|
Lakirti
Acemi Üye
Mesajlar: 35 Konular: 10
Katılma Tarihi: Jan 2012
Rep Puanı: 0
Teşekkürler: 4
1 Mesajına, 2 Teşekkür edildi.
Kişisel Bilgileri:
Konu Tarihi: 01-27-2012 10:48 PM
Merhabalar, kategorilerde ürün fiyatının altında stok durumunu ''stokta var, yok, yolda'' gibi nasıl ekleyebiliriz? category.tpl de stok ile ne denediysem deneyeyim hep hata aldım, yardımcı olursanız sevinirim.
|
Teşekkür Edenler: | |
|
Lakirti
Acemi Üye
Mesajlar: 35 Konular: 10
Katılma Tarihi: Jan 2012
Rep Puanı: 0
Teşekkürler: 4
1 Mesajına, 2 Teşekkür edildi.
Kişisel Bilgileri:
Konu Tarihi: 02-05-2012 05:32 PM
Buldum ve çalışıyor. Miraç yazmış, yapmak isteyenler için paylaşıyorum...
(07-31-2011 01:39 AM)mirac Yazılan: Catalog/Controller/Product/Category.php aç
bul
Kod:
if ($special) {
$special = $this->currency->format($this->tax->calculate($special, $result['tax_class_id'], $this->config->get('config_tax')));
}
}
altına ekle
Kod:
$product_info = $this->model_catalog_product->getProduct($result['product_id']);
if ($product_info['quantity'] <= 0) {
$this->data['stock'] = $product_info['stock'];
} else {
if ($this->config->get('config_stock_display')) {
$this->data['stock'] = $product_info['quantity'];
} else {
$this->data['stock'] = $this->language->get('text_instock');
}
}
bul
Kod:
'special' => $special,
altına ekle
Kod:
'stock' => $this->data['stock'],
catalog/language/turkish/product/category.php aç
ekle
Kod:
$_['text_instock'] = 'Stokta var';
catalog/view/theme/kullandığın tema/product/category.tpl aç
göstermek istediğin yere ekle
Kod:
<?php echo $products[$j]['stock']; ?>
|