tr-opencart

     
avatar Şuanki Zaman: 11-15-2024, 10:24 PMHoşgeldin Misafir !
  Şifremi Hatırlat   kayıt ol
opencart temaları

Opencart 1.5.6.4 üst kısma nasıl menü eklerim?

Konuyu görüntüleyenler: 1 Misafir
 
Değerlendir:
  • 0 Oy - 0 Yüzde
  • 1
  • 2
  • 3
  • 4
  • 5
%
Cevapla  Gönder 
v  v
Yazar  Vatansever - Görüntüleme - Okunma  4384 - Yorum  1

Vatanseverv
Acemi Üye
**
Üye user avatar
Çevrimdışı

Mesajlar: 13
Konular: 4
Katılma Tarihi: May 2014
Rep Puanı: 0
Teşekkürler: 2
0 Mesajına, 0 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 05-22-2014 08:18 PM

Arkadaşlar elimde pure css3 responsive mega menu 1.0 ve CodeCanyon - MEDI v1.0 - Responsive & Animated CSS3 Menu var bunları nasıl sayfanın başına eklerim yada bu iş için adminden yönetebileceğim bir modül varmı?
Alıntı Yaparak Cevapla
Paylaş!
Vatanseverv
Acemi Üye
**
Üye user avatar
Çevrimdışı

Mesajlar: 13
Konular: 4
Katılma Tarihi: May 2014
Rep Puanı: 0
Teşekkürler: 2
0 Mesajına, 0 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 05-26-2014 12:01 PM
Arkadaşlar temamın üst kısmında bilgiler menüsü eklenmiş buradaki seçenekleri düzenlemek istiyorum nasıl yapabilirim (Anasayfa Katogoriler Hakkımızda İletişim) bulunsun istiyorum

site\catalog\controller\common\header.php
PHP Kod:
<?php   
class ControllerCommonHeader extends Controller {
    protected function 
index() {
        
$this->data['title'] = $this->document->getTitle();
        
         
// start body_class code
   
$this->data['text_information'] = $this->language->get('text_information');
   
$this->load->model('catalog/information');
   
$this->data['informations'] = array();

        foreach (
$this->model_catalog_information->getInformations() as $result) {
            if (
$result['bottom']) {
                
$this->data['informations'][] = array(
                    
'title' => $result['title'],
                    
'href'  => $this->url->link('information/information''information_id=' $result['information_id'])
                );
            }
        }
        
    
$current_path $this->request->get;
    if (empty(
$current_path) || $current_path['route'] == 'common/home') {
      
$body_class 'home';
    }
    else {
      
$body_class explode('/'str_replace('product/'''$current_path['route']));
      unset(
$current_path['route']);
      if (isset(
$current_path['_route_'])) {
        
$body_class array_merge($body_classexplode('/'str_replace('-''_'$current_path['_route_'])));
        unset(
$current_path['_route_']);
      }
      foreach (
$current_path as $key => $value) {
        
$body_class[] = $key "_" $value;
      }
      
$body_class 'page_' implode(" page_"array_unique($body_class));
    }
    
$body_class .= ' lang_' $this->language->get('code');
    
$this->data['body_class'] = $body_class;
      
    
// end body_class code
        
        
if (isset($this->request->server['HTTPS']) && (($this->request->server['HTTPS'] == 'on') || ($this->request->server['HTTPS'] == '1'))) {
            
$server $this->config->get('config_ssl');
        } else {
            
$server $this->config->get('config_url');
        }
        
        if (isset(
$this->session->data['error']) && !empty($this->session->data['error'])) {
            
$this->data['error'] = $this->session->data['error'];
            
            unset(
$this->session->data['error']);
        } else {
            
$this->data['error'] = '';
        }

        
$this->data['base'] = $server;
        
$this->data['description'] = $this->document->getDescription();
        
$this->data['keywords'] = $this->document->getKeywords();
        
$this->data['links'] = $this->document->getLinks();     
        
$this->data['styles'] = $this->document->getStyles();
        
$this->data['scripts'] = $this->document->getScripts();
        
$this->data['lang'] = $this->language->get('code');
        
$this->data['direction'] = $this->language->get('direction');
        
$this->data['google_analytics'] = html_entity_decode($this->config->get('config_google_analytics'), ENT_QUOTES'UTF-8');
        
$this->data['name'] = $this->config->get('config_name');
        
        if (
$this->config->get('config_icon') && file_exists(DIR_IMAGE $this->config->get('config_icon'))) {
            
$this->data['icon'] = $server 'image/' $this->config->get('config_icon');
        } else {
            
$this->data['icon'] = '';
        }
        
        if (
$this->config->get('config_logo') && file_exists(DIR_IMAGE $this->config->get('config_logo'))) {
            
$this->data['logo'] = $server 'image/' $this->config->get('config_logo');
        } else {
            
$this->data['logo'] = '';
        }        
        
        
$this->language->load('common/header');
        
        
$this->data['text_home'] = $this->language->get('text_home');
        
$this->data['text_wishlist'] = sprintf($this->language->get('text_wishlist'), (isset($this->session->data['wishlist']) ? count($this->session->data['wishlist']) : 0));
        
$this->data['text_shopping_cart'] = $this->language->get('text_shopping_cart');
        
$this->data['text_search'] = $this->language->get('text_search');
        
$this->data['text_welcome'] = sprintf($this->language->get('text_welcome'), $this->url->link('account/login''''SSL'), $this->url->link('account/register''''SSL'));
        
$this->data['text_logged'] = sprintf($this->language->get('text_logged'), $this->url->link('account/account''''SSL'), $this->customer->getFirstName(), $this->url->link('account/logout''''SSL'));
        
$this->data['text_account'] = $this->language->get('text_account');
        
$this->data['text_checkout'] = $this->language->get('text_checkout');
                
        
$this->data['home'] = $this->url->link('common/home');
        
$this->data['wishlist'] = $this->url->link('account/wishlist''''SSL');
        
$this->data['logged'] = $this->customer->isLogged();
        
$this->data['account'] = $this->url->link('account/account''''SSL');
        
$this->data['shopping_cart'] = $this->url->link('checkout/cart');
        
$this->data['checkout'] = $this->url->link('checkout/checkout''''SSL');
        
        
        
        
// Daniel's robot detector
        
$status true;
        
        if (isset(
$this->request->server['HTTP_USER_AGENT'])) {
            
$robots explode("\n"trim($this->config->get('config_robots')));

            foreach (
$robots as $robot) {
                if (
$robot && strpos($this->request->server['HTTP_USER_AGENT'], trim($robot)) !== false) {
                    
$status false;

                    break;
                }
            }
        }
        
        
// A dirty hack to try to set a cookie for the multi-store feature
        
$this->load->model('setting/store');
        
        
$this->data['stores'] = array();
        
        if (
$this->config->get('config_shared') && $status) {
            
$this->data['stores'][] = $server 'catalog/view/javascript/crossdomain.php?session_id=' $this->session->getId();
            
            
$stores $this->model_setting_store->getStores();
                    
            foreach (
$stores as $store) {
                
$this->data['stores'][] = $store['url'] . 'catalog/view/javascript/crossdomain.php?session_id=' $this->session->getId();
            }
        }
                
        
// Search        
        
if (isset($this->request->get['search'])) {
            
$this->data['search'] = $this->request->get['search'];
        } else {
            
$this->data['search'] = '';
        }
        
        
// Menu
        
$this->load->model('catalog/category');
        
$this->load->model('catalog/product');
        
        
$this->data['categories'] = array();
                    
        
$categories_1 $this->model_catalog_category->getCategories(0);
        
        foreach (
$categories_1 as $category_1) {
            if (
$category_1['top']) {
            
            
                    
$level_2_data = array();
                
                
$categories_2 $this->model_catalog_category->getCategories($category_1['category_id']);
                
                foreach (
$categories_2 as $category_2) {
                
$level_3_data = array();
                
                
$categories_3 $this->model_catalog_category->getCategories($category_2['category_id']);
                
            foreach (
$categories_3 as $category_3) {
                        
$data = array(
                        
'filter_category_id'  => $category_3['category_id'],
                        
'filter_sub_category' => true    
                    
);        
                        
//                    $product_total = $this->model_catalog_product->getTotalProducts($data);
                    
                    
$level_3_data[] = array(
//                        'name'  => $child['name'] . ' (' . $product_total . ')', 
                        
'name' => $category_3['name'],
                        
'href' => $this->url->link('product/category''path=' $category_1['category_id'] . '_' $category_2['category_id'] . '_' $category_3['category_id'])
                    );
                                    
                }
                
                
$level_2_data[] = array(
                    
'name'     => $category_2['name'],
                    
'children' => $level_3_data,
                    
'column'   => $category_2['column'] ? $category_2['column'] : 1,
                    
'href'     => $this->url->link('product/category''path=' $category_1['category_id'] . '_' $category_2['category_id'])    
                );                    
            }
                
                
// Level 1
                
$this->data['categories'][] = array(
                    
'name'     =>  $category_1['name'],
                    
'children' => $level_2_data,
                    
'column'   => $category_1['column'] ? $category_1['column'] : 1,
                    
'href'     => $this->url->link('product/category''path=' $category_1['category_id']),
                    
'id' => $category_1['category_id']
                );
            }
        }
        
        
$this->children = array(
            
'module/language',
            
'module/currency',
            
'module/cart' ,
            
'common/header_block',
        );
                
        if (
file_exists(DIR_TEMPLATE $this->config->get('config_template') . '/template/common/header.tpl')) {
            
$this->template $this->config->get('config_template') . '/template/common/header.tpl';
        } else {
            
$this->template 'default/template/common/header.tpl';
        }
        
        
$this->render();
    }     
}
?>

site\catalog\view\theme\tema adı\template\common\header.php
PHP Kod:
<!DOCTYPE html>
<!--[if 
lt IE 7]><html class="ie6" dir="<?php echo $direction; ?>" lang="<?php echo $lang; ?>"><![endif]-->
<!--[if 
IE 7]><html class="ie7" dir="<?php echo $direction; ?>" lang="<?php echo $lang; ?>"><![endif]-->
<!--[if 
IE 8]><html class="ie8" dir="<?php echo $direction; ?>" lang="<?php echo $lang; ?>"><![endif]-->
<!--[if (
gte IE 9)|!(IE)]><!--><html dir="<?php echo $direction; ?>" lang="<?php echo $lang; ?>"><!--<![endif]-->
<
head>
<
meta charset="UTF-8" />
<
title><?php echo $title?></title>
<base href="<?php echo $base?>" />
<!-- Palm -->
<meta name="HandheldFriendly" content="True" />
<!-- Windows -->
<meta name="MobileOptimized" content="320" />
<!-- Safari, Android, BB, Opera -->
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<!-- Use the .htaccess and remove these lines to avoid edge case issues. -->

<?php if ($description) { ?>
<meta name="description" content="<?php echo $description?>" />
<?php ?>
<?php 
if ($keywords) { ?>
<meta name="keywords" content="<?php echo $keywords?>" />
<?php ?>
<?php 
if ($icon) { ?>
<link href="<?php echo $icon?>" rel="icon" />
<?php ?>
<?php 
foreach ($links as $link) { ?>
<link href="<?php echo $link['href']; ?>" rel="<?php echo $link['rel']; ?>" />
<?php ?>
<link rel="stylesheet" type="text/css" href="catalog/view/theme/<?php echo $this->config->get('config_template'?>/stylesheet/stylesheet.css" />
<?php foreach ($styles as $style) { ?>
<link rel="<?php echo $style['rel']; ?>" type="text/css" href="<?php echo $style['href']; ?>" media="<?php echo $style['media']; ?>" />
<?php ?>
<!-- Megnor templatemela- Start-->
<?php if (isset($this->request->server['HTTPS']) && (($this->request->server['HTTPS'] == 'on') || ($this->request->server['HTTPS'] == '1'))) {
$http_type "https:";} else {$http_type "http:";} 
 
?><link href='<?php echo $http_type;?>//fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
 <link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="catalog/view/theme/<?php echo $this->config->get('config_template'?>/stylesheet/megnor/custom.css" />
<link rel="stylesheet" type="text/css" href="catalog/view/theme/<?php echo $this->config->get('config_template'?>/stylesheet/megnor/carousel.css" />
<link rel="stylesheet" type="text/css" href="catalog/view/theme/<?php echo $this->config->get('config_template'?>/stylesheet/megnor/responsive.css" />
<?php if($direction=='rtl'){ ?>
<link rel="stylesheet" type="text/css" href="catalog/view/theme/<?php echo $this->config->get('config_template'?>/stylesheet/megnor/rtl.css">
<?php }?>
<!--[if lt IE 9]><script type="text/javascript" src="catalog/view/javascript/megnor/html5.js"></script><![endif]-->
<!-- Megnor templatemela- End -->

<script type="text/javascript" src="catalog/view/javascript/jquery/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="catalog/view/javascript/jquery/ui/jquery-ui-1.8.16.custom.min.js"></script>
<link rel="stylesheet" type="text/css" href="catalog/view/javascript/jquery/ui/themes/ui-lightness/jquery-ui-1.8.16.custom.css" />
<script type="text/javascript" src="catalog/view/javascript/common.js"></script>

<!-- Megnor templatemela- Start -->
<script type="text/javascript" src="catalog/view/javascript/megnor/carousel.min.js"></script>
<script type="text/javascript" src="catalog/view/javascript/megnor/megnor.min.js"></script>
<script type="text/javascript" src="catalog/view/javascript/megnor/custom.js"></script>
<script type="text/javascript" src="catalog/view/javascript/megnor/jquery.custom.min.js"></script>
<script type="text/javascript" src="catalog/view/javascript/megnor/scrolltop.min.js"></script>
<script type="text/javascript" src="catalog/view/javascript/megnor/jquery.formalize.min.js"></script> 
<script type="text/javascript" src="catalog/view/javascript/megnor/jstree.min.js"></script> 
<script type="text/javascript" src="catalog/view/javascript/megnor/cloudzoom.js"></script> 
<script type="text/javascript" src="catalog/view/javascript/megnor/fancybox.js"></script> 
<!-- Megnor templatemela- End -->

<?php foreach ($scripts as $script) { ?>
<script type="text/javascript" src="<?php echo $script?>"></script>
<?php ?>

<!--[if lt IE 7]>
<script type="text/javascript" src="catalog/view/javascript/DD_belatedPNG_0.0.8a-min.js"></script>
<script type="text/javascript">
DD_belatedPNG.fix('#logo img');
</script>
<![endif]-->

<?php if ($stores) { ?>
<script type="text/javascript"><!--
$(document).ready(function() {<?php foreach ($stores as $store) { ?>$('body').prepend('<iframe src="<?php echo $store?>" style="display: none;"></iframe>');<?php ?>});//--></script>
<?php ?>

<script type="text/javascript">
jQuery(document).ready(function(){
    jQuery(".cate_bullet").click(function(){
    jQuery(".main-navigation").slideToggle(800);
    $('.cate_inner .title_outer').toggleClass('active');
    });
}); 

</script>


<?php echo $google_analytics?>
<!-- TemplateMela templatemela - Start -->
<!--[if lt IE 9]><script type="text/javascript" src="catalog/view/javascript/megnor/respond.min.js"></script><![endif]-->
<!-- TemplateMela templatemela - End -->
</head>
<body class="<?php echo $body_class?>">
       </div>
</div>
    <div id="header">
        <div class="header-left">  <!--megnor 'header-left' start -->
        
                <!--megnor added -->
        <div class="tm_headerlinkmenu">
                <div class="tm_headerlinks_inner"><div class="headertoggle_img">&nbsp;</div></div>
                <ul class="header_links">
                  <li> <a href="<?php echo $account?>"><?php echo $text_account?></a></li>
                <li><a href="<?php echo $wishlist?>" id="wishlist-total"><?php echo $text_wishlist?></a></li>
                </ul> 
        </div>
            
            <?php if ($logo) { ?>
                <div id="logo"><a href="<?php echo $home?>"><img src="<?php echo $logo?>" title="<?php echo $name?>" alt="<?php echo $name?>" /></a></div>            
            <?php ?>
        
 

        </div>  <!--megnor 'header-left' end -->      
        <div class="header-right">  <!--megnor 'header-right' start -->
        
        
      <div class="custom_header_main">
         <div class="custom_header_inner">
            <?php echo $header_block?>
         </div>
      </div>
    
    
           <div class="welcome-links">
                <div class="links">                                                
                    <a href="<?php echo $account?>"><?php echo $text_account?></a>
                    <a href="<?php echo $wishlist?>" id="wishlist-total"><?php echo $text_wishlist?></a>
                </div>
                <!--</div> -->
                <!--<?php echo $cart?> -->
                <!-- <div class="contact_banner">-->
                    <!--<img src="catalog/view/theme/<?php echo $this->config->get('config_template').'/image/contact-banner.png'?>" alt="" />   -->
                <!--     </div>-->
                
            <div id="search">
                <div class="button-search"><?php echo $text_search?></div>
                <input type="text" name="search" onClick="this.placeholder = '';" placeholder="<?php echo $text_search?>" value="<?php echo $search?>" />
            </div>                            
        </div> <!--megnor 'header-right' end -->       
    </div>
</header>
  
  
 <!--  =============================================== Mobile menu start  =============================================  -->
<div id="res-menu" class="main-menu nav-container1">
<div id="res-menu1" class="main-menu1 nav-container2">
    <div class="nav-responsive"><span>Menu</span><div class="expandable"></div></div>
    <ul class="main-navigation">
      <?php foreach ($categories as $category) { ?>
    <li><a href="<?php echo $category['href']; ?>"><?php echo $category['name']; ?></a>
      <?php if ($category['children']) { ?>

        <?php for ($i 0$i count($category['children']);) { ?>
        <ul>
          <?php $j $i ceil(count($category['children']) / $category['column']); ?>
          <?php for (; $i $j$i++) { ?>
          <?php if (isset($category['children'][$i])) { ?>                                        
                <li>
                <?php if(count($category['children'][$i]['children'])>0){ ?>
                    <a href="<?php echo $category['children'][$i]['href']; ?>" class="activSub" <?php /*?>onmouseover='JavaScript:openSubMenu("<?php echo $category['children'][$i]['id']; ?>")'<?php */?>><?php echo $category['children'][$i]['name'];?></a>                     
                <?php } else { ?>                
                    <a href="<?php echo $category['children'][$i]['href']; ?><?php /*?>onmouseover='JavaScript:closeSubMenu()'<?php */?> ><?php echo $category['children'][$i]['name']; ?></a>
                <?php ?>

                <?php if ($category['children'][$i]['children']) { ?>
                <?php /*?><div class="submenu" id="id_menu_<?php echo $category['children'][$i]['id']; ?>"><?php */?>
                <ul>
                <?php for ($wi 0$wi count($category['children'][$i]['children']); $wi++) { ?>
                    <li><a href="<?php echo $category['children'][$i]['children'][$wi]['href']; ?>"  ><?php echo $category['children'][$i]['children'][$wi]['name']; ?></a></li>
                 <?php ?>
                </ul>
                <?php /*?></div><?php */?>
              <?php ?>          
            </li>        
          <?php ?>
          <?php ?>
        </ul>
        <?php ?>

      <?php ?>
    </li>
    <?php ?>
    </ul>
    </div>

</div>
<!--  ================================ Mobile menu end   ======================================   --> 

  
<!-- ================================ Start Navigation =================== -->

<?php if ($categories) { ?>

<nav class="nav-container" role="navigation">


<div id="menu" class="main-menu">

<div class="nav-responsive"><span>Menu</span><div class="expandable"></div></div>
<div class="cate_inner">
<div class="title_outer">
        <p id="left_categorytitle" class="title_block">
            <span class="cat_title">Kategoriler</span>
            <span class="cate_bullet">&nbsp;</span>
        </p>
        </div>
    </div>
  <ul class="main-navigation">
      
    <?php foreach ($categories as $category_1) { ?>
        <li>
            <a href="<?php echo $category_1['href']; ?>"><?php echo $category_1['name']; ?></a>
               <?php if ($category_1['children']) { ?>
               <?php $i count($category_1['children']); ?>
                    <span class="active_menu"></span>
                    <div class="categorybg">
                         <div class="categoryinner">
                            
                                <ul>
                                <?php $i=1?>
                                <?php foreach ($category_1['children'] as $category_2) { ?>
                                <ul>
                                <li class="categorycolumn"><b><a class="submenu1" href="<?php echo $category_2['href']; ?>"><?php echo $category_2['name']; ?></a></b>
                                
                                  <?php if($category_2['children']) { ?>
                                    <?php $j count($category_2['children']); ?>
                                    <?php if($j<=10) { ?>
                                    
                                    <div class="cate_inner_bg">
                                      <ul>
                                         <?php foreach ($category_2['children'] as $category_3) { ?>
                                         <li style="padding-right:6px;"><a class="submenu2" href="<?php echo $category_3['href']; ?>"><?php echo $category_3['name']; ?></a></li>
                                         <?php ?>
                                      </ul>
                                    </div>
                                
                                    <?php } else { ?>
                                    
                                    <div>
                                      <ul>
                                      <?php $j=0?>
                                         <?php foreach ($category_2['children'] as $category_3) { ?>
                                         <li style="padding-right:6px;"><a class="submenu2" href="<?php echo $category_3['href']; ?>"><?php echo $category_3['name']; ?></a></li>
                                         <?php if (++$j == 10?>
                                         <?php ?>
                                         <li style="padding-right:6px;"><a class="submenu2" href="<?php echo $category_2['href']; ?>">More....</a></li>
                                      </ul>
                                    </div>
                                    <?php ?>
                                    
                                </li>
                                <?php ?>
                                </ul>
                                <?php ?>
                                
                                </ul>
                                
                    
        
                            
                        </div>
                    </div>
                
                <?php ?>
              <?php ?>
          </li> 
  </ul>
  
</div>
<div class="info_link">
    <ul>
             <?php foreach ($informations as $information) { ?>
     <li><a href="<?php echo $information['href']; ?>"><?php echo $information['title']; ?></a></li>
     <?php ?>
    </ul>
</div>
</nav>

<?php ?>


<!-- ================================ END Navigation =================== -->

<!-- section code start -->
<section id='content-wrapper'>

<div class="content-inner">

<?php if ($error) { ?>
<div class="warning"><?php echo $error ?><img src="catalog/view/theme/default/image/close.png" alt="" class="close" /></div>
<?php ?>

<div id="notification"></div> 
Alıntı Yaparak Cevapla
Paylaş!

« Önceki | Sonraki »
Cevapla  Gönder 

Opencart 1.5.6.4 üst kısma nasıl menü eklerim? Konusunun Linki Direk Link
Opencart 1.5.6.4 üst kısma nasıl menü eklerim? Konusunun HTML Kodu HTML Link
Opencart 1.5.6.4 üst kısma nasıl menü eklerim? Konusu BBCode Linki BBCode Link
Opencart 1.5.6.4 üst kısma nasıl menü eklerim? Konusunu Paylaş Sosyal Paylaş

Benzeyen Konular
Konu: Yazar Cevaplar: Gösterim: Son Mesaj
  Opencart | Yandex mail kullanmak tolgavirus 10 11,853 03-25-2021 08:52 AM
Son Mesaj: hasankso
  Opencart 1.5 BTC Dönüştürme Sorunu emir28 1 732 06-06-2020 10:47 AM
Son Mesaj: Gökhan TAYLAN
  Opencart 1.5. x Ödeme Bildirim Modülü osdem66 6 4,834 04-14-2019 03:17 PM
Son Mesaj: Blogizma
  opencart 3.x için iyzico ödeme metodu yükleme konusunda yardım istiyorum modasude 1 2,136 12-11-2018 04:15 PM
Son Mesaj: modasude
  Temaya özel font nasıl eklenir? Hovsanli 3 4,544 10-08-2018 03:37 PM
Son Mesaj: emir28
  OpenCart da simplexml_load_string(): Entity: line 1: parser error hatası byhonur 2 1,583 06-09-2018 01:54 PM
Son Mesaj: byhonur
  [Modifikasyon] Opencart Ultra Gelişmiş Resim Editörü 1.5.5.x ve Üzeri e-ticaretdersleri 10 8,232 05-17-2018 09:05 AM
Son Mesaj: muglali20
  opencart sosyal medya ürün paylaşımı furkanyvz 0 2,065 02-12-2018 11:31 AM
Son Mesaj: furkanyvz
  [Mod] Opencart 1.5.x SMS Modülü - www.esemes.net esemesnet 0 1,767 07-25-2017 10:40 PM
Son Mesaj: esemesnet
Rainbow [Mod] opencart 1.5.6.4 sürümünde journal temaya uygun renk değiştirme modülü agent87 0 1,948 06-24-2017 04:34 AM
Son Mesaj: agent87

Opencart 1.5.6.4 üst kısma nasıl menü eklerim? indir, Opencart 1.5.6.4 üst kısma nasıl menü eklerim? Videosu, Opencart 1.5.6.4 üst kısma nasıl menü eklerim? online izle, Opencart 1.5.6.4 üst kısma nasıl menü eklerim? Bedava indir, Opencart 1.5.6.4 üst kısma nasıl menü eklerim? Yükle, Opencart 1.5.6.4 üst kısma nasıl menü eklerim? Hakkında, Opencart 1.5.6.4 üst kısma nasıl menü eklerim? nedir, Opencart 1.5.6.4 üst kısma nasıl menü eklerim? Free indir, Opencart 1.5.6.4 üst kısma nasıl menü eklerim? oyunu, Opencart 1.5.6.4 üst kısma nasıl menü eklerim? download


Forum Atla: