debreli kullanıcısının son içeriği

  1. debreli

    Begenilen ürünler sayfası

    oku txt dosyasındaki işlemleri yapın. sayfa linki sitenizin adresi/index.php?route=product/hot İndir
  2. debreli

    en çok satan ürünler sayfası

    oku dosyasındaki işlemleri uygulayın. sitenizin adersi/index.php?route=product/bestseller linkinden giriş yapın. İndir
  3. debreli

    kazancınız x tl modifikasyon

    teman/stylesheet.css bul .attribute { öncesine ekle .product-info .income{ position:absolute; background: url('../image/income.png') no-repeat; right:100px; width: 95px; height: 98px; top:299px; } .product-info .income p{ padding:25px...
  4. debreli

    kazancınız x tl modifikasyon

    product.php eklediğiniz bu kodu $this->data['income'] = $this->currency->format($product_info['price'] - $product_info['special']); $this->data['saving'] = round((($product_info['price'] - $product_info['special'])/$product_info['price'])*100, 0); bununla değiştirin $this->data['income']...
  5. debreli

    kazancınız x tl modifikasyon

    catalog/controller/product/product.php aç bul if ((float)$product_info['special']) { sonrasına ekle $this->data['income'] = $this->currency->format($product_info['price'] - $product_info['special']); $this->data['saving'] = round((($product_info['price'] -...
  6. debreli

    Markaya ait ürünler mdülü

    indir
  7. debreli

    Katagori ürünleri modulü

    catalog/controller/module dosyasında url yollarını yanlış geçmişim. tekrar indirip deneyin.
  8. debreli

    Katagori ürünleri modulü

    zipli dosyanın içinden çıkan admin ve catalog klasörlerini sitenizin olduğu dizine atın. indir
  9. debreli

    Üreticiye ait diğer ürünler

    catalog/controller/product/product.php aç bul $this->document->setTitle($product_info['name']); öncesine ekle //üreticiye ait urunler $this->load->model('catalog/product'); $this->load->model('catalog/manufacturer'); $this->load->model('tool/image')...
  10. debreli

    ürün sayfasında kategori adını göstermek

    xml versiyonu var burdan manuel anlatım catalog/controller/product/product.php aç bul public function getTotalProducts($data = array()) { öncesine ekle public function getCategoriesByProductId($product_id) { $query = $this->db->query("SELECT * FROM " . DB_PREFIX ...
  11. debreli

    üreticiye ait ürünleri manuel olarak göstermek

    indir catalog/controller/module/manufacturer.php aç bul 'filter_manufacturer_id' => $manufacturer_id=12, 12 yazan kısma göstermek istediğiniz üreticinin id sini yazın catalog/language/turkish/module/manufacturer.php dosyasından üreticinin adını deiştirin.
  12. debreli

    ürün sayfasında x adet kaldı modikasyonu

    catalog/controller/product/product.php aç bul $this->data['text_tags'] = $this->language->get('text_tags'); sonrasına ekle $this->data['text_quantity'] = $this->language->get('text_quantity'); bul $this->data['model'] = $product_info['model']; sonrasına ekle $this->data['quantity'] =...
  13. debreli

    ürün sayfasında inndirim oranı

    edit yapılan dosyaların yedeğini alınız.. catalog/model/catalog/product.php aç bul 'price' => ($query->row['discount'] ? $query->row['discount'] : $query->row['price']), sonrasına ekle 'discount' => $query->row['discount'], 'fiyat'...
  14. debreli

    modulde indirimli ürün resmi

    catalog/model/catalog/product.php aç bul 'special' => $query->row['special'], sonrasına ekle 'discount' => $query->row['discount'], catalog/controller/module/latest.php aç bul 'name' => $result['name'], sonrasına ekle 'discount' =>...
  15. debreli

    Yeni Ürünler ticker

    catalog/controller/common/header.php aç bul $this->children = array( 'module/language', 'module/currency', 'module/cart' ); sonrasına ekle //yeni ürünler $this->load->model('catalog/product'); $this->data['products'] = array(); $data = array( 'sort' =>...
Üst