Arama sonuçlarınız

  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' =>...
  16. debreli

    tooltip

    stylesheet/stylesheet.css aç dosyanın sonuna ekle .hover{ position:absolute;display:none;z-index:999; width:245px; height:108px; background:url('../image/tooltip.png') no-repeat;} featured.php dosyasını aç en son div den sonra ekle <script type="text/javascript">...
  17. debreli

    Ürün İsimlerini Kısaltma

    tabs.php de aynı kodları bul.değiştir.
  18. debreli

    Ürün İsimlerini Kısaltma

    tab dediğin hangi modül? modülün catalog/controller/module klasörü içersindeki php dosyasının adı ne?
  19. debreli

    Ürün İsimlerini Kısaltma

    featured.php bul 'name' => $product_info['name'], değiştir 'name' => mb_substr(strip_tags(html_entity_decode($product_info['name'], ENT_QUOTES, 'UTF-8')), 0, 5) . '..',
  20. debreli

    Ürün İsimlerini Kısaltma

    catalog/controller/product/catagory.php aç 'name' => $result['name'], değiştir 'name' => mb_substr(strip_tags(html_entity_decode($result['name'], ENT_QUOTES, 'UTF-8')), 0, 5) . '..', diğer dosya ve modüllerde aynı işlemleri yapabilirsiniz. koddaki 5 karakter sayısı...
Üst