debreli
OpenCart-TR
Yeni Eklenen Ürünler Slayt Modülü yüklüyse cakışabilir.yedek alınız.
aşağıdaki acıklamanın ingilizcesi zipli dosyanın içersinde mevcut.
aç catalog/view/theme/default/template/common/header.tpl
bul
</head>
öncesine ekle
aç catalog/view/theme/default/template/common/footer.tpl
bul
öncesine ekle
aç catalog/controller/common/footer.php
bul
bir öncesine ekle
aşağıdaki acıklamanın ingilizcesi zipli dosyanın içersinde mevcut.
aç catalog/view/theme/default/template/common/header.tpl
bul
</head>
öncesine ekle
Kod:
<link rel="stylesheet" type="text/css" href="catalog/view/theme/<?php echo $template; ?>/stylesheet/footerslider.css" />
aç catalog/view/theme/default/template/common/footer.tpl
bul
Kod:
<div id="footer">
öncesine ekle
Kod:
<script type="text/javascript" src="catalog/view/javascript/jquery/jquery.jcarousel-lite.js"></script>
<?php if ($manufacturers){ ?>
<div class="clear"></div>
<div id="carousel_cont">
<a href="" class="prevsmall"><img src="./image/prev.png" alt="" /></a>
<div id="carousel_man">
<ul><?php foreach ($manufacturers as $manufacturer){ ?>
<li><a href="<?php echo str_replace('&', '&', $manufacturer['href']); ?>"><img src="<?php echo $manufacturer['manufacturer_image']; ?>" title="<?php echo $manufacturer['name']; ?>" alt="<?php echo $manufacturer['name']; ?>" width="80px" height="80px" /></a></li>
<?php } ?>
</ul>
</div>
<a href="" class="nextsmall"><img src="./image/next.png" alt="" /></a>
<script type="text/javascript" src="catalog/view/javascript/jquery/footerslider.js"></script>
<div class="clear"></div>
</div>
<?php } ?>
aç catalog/controller/common/footer.php
bul
Kod:
$this->id = 'footer';
bir öncesine ekle
Kod:
$this->load->model('catalog/manufacturer');
$this->load->model('tool/seo_url');
$this->load->model('tool/image');
$this->data['manufacturers'] = array();
$results = $this->model_catalog_manufacturer->getManufacturers();
foreach ($results as $result) {
$this->data['manufacturers'][] = array(
'manufacturer_image' => $this->model_tool_image->resize($result['image'],80,80),
'name' => $result['name'],
'href' => $this->model_tool_seo_url->rewrite(HTTP_SERVER . 'index.php?route=product/manufacturer&manufacturer_id=' . $result['manufacturer_id'])
);
}