tr-opencart

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

Ajax Arama Eklentisi (vqmod) 1.5.1.X

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  osdem66 - Görüntüleme - Okunma  8827 - Yorum  10

osdem66v
Forum Kurucusu
*******
Administrators user avatar
Çevrimdışı

Mesajlar: 2,121
Konular: 158
Katılma Tarihi: Dec 2011
Rep Puanı: 27
Teşekkürler: 393
522 Mesajına, 1445 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 12-29-2011 10:52 AM
(Bu Mesaj 12-29-2011 11:11 AM değiştirilmiştir. Değiştiren : osdem66.)

Merhaba;
1.5.1.x vwrsiyonlar için uylumdur sitenize vqmod kurulu olması gerekir..

Kurulum: vqmod için:
Ekteki dosyaları indirim upload yazan klasör içindekileri siteniz ana dizinine yükleyin. aramanın daha hızlı çalışması için bu sorguyu phpmyadminden calıştırın (prefix kullanıyorsanız tablo basına prefix degerinizi eklemeyi unutmayın)

PHP Kod:
ALTER TABLE product_tag ADD INDEX lang (language_id), ADD INDEX tag (tag), ADD INDEX id (product_id), ADD INDEX lang_id (product_idlanguage_id); 

Tamamdır...



Shoppica Tema kullananlar açın:
catalog/view/javascript/livesearch.js

bulun bu kodu (bir kaçtane var)
PHP Kod:
$('#search'

bununla degiştir;
PHP Kod:
$('#site_search'

Default temadan farklı tema kullananlar aşagıdkai değişikliği yapmaları gerekir;

wqmod içindeki livesearch.css kullandıgınız temanın stylesheet.kalsörüne atınız ve
Açın:
vqmod/xml/vqmod_livesearch.xml içinde iki yerde default yazan yeri kendi tema adınızla degiştiriniz






Ekli Dosya(lar)
.zip AJAXSearch_15.zip Eklentiyi indir...
Boyut: 24.02 KB İndirme: 104
Telif Hakkı için Rapor Edin...
osdem66
Alıntı Yaparak Cevapla
Paylaş!
e-ticaretdersleriv
Osmanlı Torunu
******
Süper Moderator user avatar
Çevrimdışı

Mesajlar: 3,225
Konular: 520
Katılma Tarihi: Jan 2012
Rep Puanı: 102
Teşekkürler: 1169
1060 Mesajına, 2133 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 01-28-2012 02:39 PM
arkadaşlar ajax aramada ürün isminin yanına o ürüne ait resmi ekleme şansımız varmı bir türlü başaradım
e-ticaretdersleri
Alıntı Yaparak Cevapla
Paylaş!
osdem66v
Forum Kurucusu
*******
Administrators user avatar
Çevrimdışı

Mesajlar: 2,121
Konular: 158
Katılma Tarihi: Dec 2011
Rep Puanı: 27
Teşekkürler: 393
522 Mesajına, 1445 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 01-28-2012 02:50 PM
(01-28-2012 02:39 PM)Kiroglumarket Yazılan:  arkadaşlar ajax aramada ürün isminin yanına o ürüne ait resmi ekleme şansımız varmı bir türlü başaradım

Vardır tabiki ama söz konusu eklenti ücretli olarak satılmaktadır..
osdem66
Alıntı Yaparak Cevapla
Paylaş!
e-ticaretdersleriv
Osmanlı Torunu
******
Süper Moderator user avatar
Çevrimdışı

Mesajlar: 3,225
Konular: 520
Katılma Tarihi: Jan 2012
Rep Puanı: 102
Teşekkürler: 1169
1060 Mesajına, 2133 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 01-28-2012 05:26 PM
olay aşağıdaki kodlarda bitiyor ama bir türlü resim çekme işlemini yapamadım.resim veritabanında ne olarak kayıtlı diğer modullerdeki tanımlarında baltım thumb => image olarak geçiyor bu şekilde ekleme yapınca arama entere basınca çalışıyor ama klavye ile arama yapınca aşağı doğru liste açılmıyor

Alıntı: foreach( $parts as $part ) {
$add .= ' AND (LOWER(d.thumb) LIKE "%' . $this->db->escape($part) . '%"';
$add .= ' AND (LOWER(pd.name) LIKE "%' . $this->db->escape($part) . '%"';
$add .= ' OR LOWER(p.model) LIKE "%' . $this->db->escape($part) . '%")';
}
$add = substr( $add, 4 );
$sql = 'SELECT pd.product_id,d.thumb, pd.name, p.model FROM ' . DB_PREFIX . 'product_description AS pd ';
$sql .= 'LEFT JOIN ' . DB_PREFIX . 'product AS p ON p.product_id = pd.product_id ';
$sql .= 'LEFT JOIN ' . DB_PREFIX . 'product_to_store AS p2s ON p2s.product_id = pd.product_id ';
$sql .= 'WHERE ' . $add . ' AND p.status = 1 ';
$sql .= 'AND pd.language_id = ' . (int)$this->config->get('config_language_id');
$sql .= ' AND p2s.store_id = ' . (int)$this->config->get('config_store_id');
$sql .= ' ORDER BY p.sort_order ASC, LOWER(pd.name) ASC, LOWER(p.model) ASC, LOWER(d.thumb) ASC';
$sql .= ' LIMIT 15';
$res = $this->db->query( $sql );
if( $res ) {
$data = ( isset($res->rows) ) ? $res->rows : $res->row;

// For the seo url stuff
$basehref = 'product/product&keyword=' . $this->request->get['keyword'] . '&product_id=';
foreach( $data as $key => $values ) {
$data[$key] = array(

'name' => htmlspecialchars_decode($values['image'] . ' (' . $values['name'] . ' (' . $values['model'] . ')', ENT_QUOTES),
'href' => $this->url->link($basehref . $values['product_id'])
);
}
}
}
}
echo json_encode( $data );
}
]]>
e-ticaretdersleri
Alıntı Yaparak Cevapla
Paylaş!
irembagiv
Üye
***
Üye user avatar
Çevrimdışı

Mesajlar: 64
Konular: 11
Katılma Tarihi: Jan 2012
Rep Puanı: 0
Teşekkürler: 10
3 Mesajına, 3 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 03-10-2012 12:22 PM
peki arama sonuçlarında modelin yanına fiyatı nasıl getirebilirim birde eğer üye giriş yaptı ise fiyatlı göstersin üye giriş yapmadı ise fiyatsız göstersin?
mümkünmü
Alıntı Yaparak Cevapla
Paylaş!
irembagiv
Üye
***
Üye user avatar
Çevrimdışı

Mesajlar: 64
Konular: 11
Katılma Tarihi: Jan 2012
Rep Puanı: 0
Teşekkürler: 10
3 Mesajına, 3 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 03-11-2012 02:09 AM
/vqmod/xml dosyasının içindeki catalog/controller/product/search.php dosyasına eklenecek kodlar aşağıdaki gibi

PHP Kod:
    public function ajax()
                {
                    
// Contains results
                    
$data = array();
                    if( isset(
$this->request->get['keyword']) ) {
                        
// Parse all keywords to lowercase
                        
$keywords strtolower$this->request->get['keyword'] );
                        
// Perform search only if we have some keywords
                        
if( strlen($keywords) >= ) {
                            
$parts explode' '$keywords );
                            
$add '';
                            
// Generating search
                            
foreach( $parts as $part ) {
                                
$add .= ' AND (LOWER(pd.name) LIKE "%' $this->db->escape($part) . '%"';
                                
$add .= ' OR LOWER(p.model) LIKE "%' $this->db->escape($part) . '%")';

                            }
                            
$add substr$add);
                            
$sql  'SELECT pd.product_id, pd.name, p.model FROM ' DB_PREFIX 'product_description AS pd ';
                            
$sql .= 'LEFT JOIN ' DB_PREFIX 'product AS p ON p.product_id = pd.product_id ';
                            
$sql .= 'LEFT JOIN ' DB_PREFIX 'product_to_store AS p2s ON p2s.product_id = pd.product_id ';
                            
$sql .= 'WHERE ' $add ' AND p.status = 1 ';
                            
$sql .= 'AND pd.language_id = ' . (int)$this->config->get('config_language_id');
                            
$sql .= ' AND p2s.store_id =  ' . (int)$this->config->get('config_store_id'); 
                            
$sql .= ' ORDER BY p.sort_order ASC, LOWER(pd.name) ASC, LOWER(p.model) ASC';
                            
$sql .= ' LIMIT 30';
                            
$res $this->db->query$sql );
                            if( 
$res ) {
                                
$data = ( isset($res->rows) ) ? $res->rows $res->row;
                

                                
// For the seo url stuff
                                
$basehref 'product/product&keyword=' $this->request->get['keyword'] . '&product_id=';
                                foreach( 
$data as $key => $values ) {
                                    
$data[$key] = array(
                                        
'name' => htmlspecialchars_decode($values['name'] . ' (' $values['model'] . ') 'ENT_QUOTES),
                                        
'href' => $this->url->link($basehref $values['product_id'])
                                    );
                                }
                            }
                        }
                    }
                    echo 
json_encode$data );
                }
                ]]> 

aşağıdakide model yerine ürün fiyatını gösteriyor



PHP Kod:
    public function ajax()
                {
                    
// Contains results
                    
$data = array();
                    if( isset(
$this->request->get['keyword']) ) {
                        
// Parse all keywords to lowercase
                        
$keywords strtolower$this->request->get['keyword'] );
                        
// Perform search only if we have some keywords
                        
if( strlen($keywords) >= ) {
                            
$parts explode' '$keywords );
                            
$add '';
                            
// Generating search
                            
foreach( $parts as $part ) {
                                
$add .= ' AND (LOWER(pd.name) LIKE "%' $this->db->escape($part) . '%"';
                                
$add .= ' OR LOWER(p.price) LIKE "%' $this->db->escape($part) . '%")';

                            }
                            
$add substr$add);
                            
$sql  'SELECT pd.product_id, pd.name, p.price FROM ' DB_PREFIX 'product_description AS pd ';
                            
$sql .= 'LEFT JOIN ' DB_PREFIX 'product AS p ON p.product_id = pd.product_id ';
                            
$sql .= 'LEFT JOIN ' DB_PREFIX 'product_to_store AS p2s ON p2s.product_id = pd.product_id ';
                            
$sql .= 'WHERE ' $add ' AND p.status = 1 ';
                            
$sql .= 'AND pd.language_id = ' . (int)$this->config->get('config_language_id');
                            
$sql .= ' AND p2s.store_id =  ' . (int)$this->config->get('config_store_id'); 
                            
$sql .= ' ORDER BY p.sort_order ASC, LOWER(pd.name) ASC, LOWER(p.price) ASC';
                            
$sql .= ' LIMIT 30';
                            
$res $this->db->query$sql );
                            if( 
$res ) {
                                
$data = ( isset($res->rows) ) ? $res->rows $res->row;
                

                                
// For the seo url stuff
                                
$basehref 'product/product&keyword=' $this->request->get['keyword'] . '&product_id=';
                                foreach( 
$data as $key => $values ) {
                                    
$data[$key] = array(
                                        
'name' => htmlspecialchars_decode($values['name'] . ' (' $values['price'] . 'TL) 'ENT_QUOTES),
                                        
'href' => $this->url->link($basehref $values['product_id'])
                                    );
                                }
                            }
                        }
                    }
                    echo 
json_encode$data );
                }
                ]]> 

şunu nasıl yapabilirim
eğer sitede fiyatlar kapalı ise ilk kodu fiyatlar açık ise ikinci kodu ekleme olayını aşağıdaki kodlarla nasıl kullanabilirim

<?php if ($price): ?>

<?php else: ?>

<?php endif; ?>

(03-10-2012 12:22 PM)irembagi Yazılan:  peki arama sonuçlarında modelin yanına fiyatı nasıl getirebilirim birde eğer üye giriş yaptı ise fiyatlı göstersin üye giriş yapmadı ise fiyatsız göstersin?
mümkünmü
Alıntı Yaparak Cevapla
Paylaş!
irembagiv
Üye
***
Üye user avatar
Çevrimdışı

Mesajlar: 64
Konular: 11
Katılma Tarihi: Jan 2012
Rep Puanı: 0
Teşekkürler: 10
3 Mesajına, 3 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 03-12-2012 12:20 PM
osdem66 abi inan bir haftadır bununla uğraşıyorum bir sürü dene yanılma yöntemi kullandım ama yapamadım. yardımlarını bekliyorum ben arama sonuçlarında ürün fiyatlarını getirmeyi başardım sorun yok ama şunu yapmak istiyorum eğer müşteri giriş yaptı ise ajax arama çalışsın yapmadı ise ajax arama çalışmasın çünkü fiyatlarım gizli sadece üyeler görebilir bunun için böyle birşey yapmak istiyorum

bu yüzden
vqmod_livesearch.xml dosyası içerisinde
catalog/controller/product/search.php
dosyasına eklenen kodlar aşağıdaki gibi burada nereye

<?php if (!$logged) echo $text_welcome; else echo $text_logged; ?>
yada

<?php if ($price): ?>

<?php else: ?>

<?php endif; ?>

bu kodlardan herhangi birisini burada nasıl kullanabilirim?


PHP Kod:
<file name="catalog/controller/product/search.php">
        <
operation>
            <
search position="bottom" offset="2">
                <![
CDATA[]]>
            </
search>
            <
add>
                <![
CDATA[
                public function 
ajax()
                {
                    
// Contains results
                    
$data = array();
                    if( isset(
$this->request->get['keyword']) ) {
                        
// Parse all keywords to lowercase
                        
$keywords strtolower$this->request->get['keyword'] );
                        
// Perform search only if we have some keywords
                        
if( strlen($keywords) >= ) {
                            
$parts explode' '$keywords );
                            
$add '';
                            
// Generating search
                            
foreach( $parts as $part ) {
                                
$add .= ' AND (LOWER(pd.name) LIKE "%' $this->db->escape($part) . '%"';
                                
$add .= ' OR LOWER(p.model) LIKE "%' $this->db->escape($part) . '%")';

                            }
                            
$add substr$add);
                            
$sql  'SELECT pd.product_id, pd.name, p.model FROM ' DB_PREFIX 'product_description AS pd ';
                            
$sql .= 'LEFT JOIN ' DB_PREFIX 'product AS p ON p.product_id = pd.product_id ';
                            
$sql .= 'LEFT JOIN ' DB_PREFIX 'product_to_store AS p2s ON p2s.product_id = pd.product_id ';
                            
$sql .= 'WHERE ' $add ' AND p.status = 1 ';
                            
$sql .= 'AND pd.language_id = ' . (int)$this->config->get('config_language_id');
                            
$sql .= ' AND p2s.store_id =  ' . (int)$this->config->get('config_store_id'); 
                            
$sql .= ' ORDER BY p.sort_order ASC, LOWER(pd.name) ASC, LOWER(p.model) ASC';
                            
$sql .= ' LIMIT 30';
                            
$res $this->db->query$sql );
                            if( 
$res ) {
                                
$data = ( isset($res->rows) ) ? $res->rows $res->row;
                
                                
// For the seo url stuff
                                
$basehref 'product/product&keyword=' $this->request->get['keyword'] . '&product_id=';
                                foreach( 
$data as $key => $values ) {
                                    
$data[$key] = array(
                                        
'name' => htmlspecialchars_decode($values['name'] . ' (' $values['model'] . ') 'ENT_QUOTES),
                                        
'href' => $this->url->link($basehref $values['product_id'])
                                    );
                                }
                            }
                        }
                    }
                    echo 
json_encode$data );
                }
                ]]>
            </
add>
        </
operation>
    </
file
Alıntı Yaparak Cevapla
Paylaş!
osdem66v
Forum Kurucusu
*******
Administrators user avatar
Çevrimdışı

Mesajlar: 2,121
Konular: 158
Katılma Tarihi: Dec 2011
Rep Puanı: 27
Teşekkürler: 393
522 Mesajına, 1445 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 03-12-2012 02:28 PM
(Bu Mesaj 03-12-2012 02:29 PM değiştirilmiştir. Değiştiren : osdem66.)
(03-12-2012 12:20 PM)irembagi Yazılan:  osdem66 abi inan bir haftadır bununla uğraşıyorum bir sürü dene yanılma yöntemi kullandım ama yapamadım. yardımlarını bekliyorum ben arama sonuçlarında ürün fiyatlarını getirmeyi başardım sorun yok ama şunu yapmak istiyorum eğer müşteri giriş yaptı ise ajax arama çalışsın yapmadı ise ajax arama çalışmasın çünkü fiyatlarım gizli sadece üyeler görebilir bunun için böyle birşey yapmak istiyorum

bu yüzden
vqmod_livesearch.xml dosyası içerisinde
catalog/controller/product/search.php
dosyasına eklenen kodlar aşağıdaki gibi burada nereye

<?php if (!$logged) echo $text_welcome; else echo $text_logged; ?>
yada

<?php if ($price): ?>

<?php else: ?>

<?php endif; ?>

bu kodlardan herhangi birisini burada nasıl kullanabilirim?


PHP Kod:
<file name="catalog/controller/product/search.php">
        <
operation>
            <
search position="bottom" offset="2">
                <![
CDATA[]]>
            </
search>
            <
add>
                <![
CDATA[
                public function 
ajax()
                {
                    
// Contains results
                    
$data = array();
                    if( isset(
$this->request->get['keyword']) ) {
                        
// Parse all keywords to lowercase
                        
$keywords strtolower$this->request->get['keyword'] );
                        
// Perform search only if we have some keywords
                        
if( strlen($keywords) >= ) {
                            
$parts explode' '$keywords );
                            
$add '';
                            
// Generating search
                            
foreach( $parts as $part ) {
                                
$add .= ' AND (LOWER(pd.name) LIKE "%' $this->db->escape($part) . '%"';
                                
$add .= ' OR LOWER(p.model) LIKE "%' $this->db->escape($part) . '%")';

                            }
                            
$add substr$add);
                            
$sql  'SELECT pd.product_id, pd.name, p.model FROM ' DB_PREFIX 'product_description AS pd ';
                            
$sql .= 'LEFT JOIN ' DB_PREFIX 'product AS p ON p.product_id = pd.product_id ';
                            
$sql .= 'LEFT JOIN ' DB_PREFIX 'product_to_store AS p2s ON p2s.product_id = pd.product_id ';
                            
$sql .= 'WHERE ' $add ' AND p.status = 1 ';
                            
$sql .= 'AND pd.language_id = ' . (int)$this->config->get('config_language_id');
                            
$sql .= ' AND p2s.store_id =  ' . (int)$this->config->get('config_store_id'); 
                            
$sql .= ' ORDER BY p.sort_order ASC, LOWER(pd.name) ASC, LOWER(p.model) ASC';
                            
$sql .= ' LIMIT 30';
                            
$res $this->db->query$sql );
                            if( 
$res ) {
                                
$data = ( isset($res->rows) ) ? $res->rows $res->row;
                
                                
// For the seo url stuff
                                
$basehref 'product/product&keyword=' $this->request->get['keyword'] . '&product_id=';
                                foreach( 
$data as $key => $values ) {
                                    
$data[$key] = array(
                                        
'name' => htmlspecialchars_decode($values['name'] . ' (' $values['model'] . ') 'ENT_QUOTES),
                                        
'href' => $this->url->link($basehref $values['product_id'])
                                    );
                                }
                            }
                        }
                    }
                    echo 
json_encode$data );
                }
                ]]>
            </
add>
        </
operation>
    </
file

Merhaba; bu kodlar arasındna sadece price degerini if koşuluna baglayabilmek su an ki kodlama içinde yapabilmek mümkün görünmüyor ancak arama kutucugunu giriş yapma koşuluna baglayabilirsin..giriş yapınca kutucuk aktif hale gelir...
osdem66
Alıntı Yaparak Cevapla
Paylaş!
irembagiv
Üye
***
Üye user avatar
Çevrimdışı

Mesajlar: 64
Konular: 11
Katılma Tarihi: Jan 2012
Rep Puanı: 0
Teşekkürler: 10
3 Mesajına, 3 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 03-12-2012 02:55 PM
dediğinizide çok denedim ama yine kodları nereye nasıl ekleyeceğimi bilemedim
kullandığım tema shoppica ve arama kutusu için farklı seçenekler var ve orada birden fazla if koşulu kullanılmış kodları tam olarak nereye nasıl eklemem gerektiğini bulamadım
headır dosyam aşağıdaki gibidir

catalog/view/theme/shoppica/template/common/header.tpl

PHP Kod:
<?php echo '<?xml version="1.0" encoding="UTF-8"?>' "\n"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="<?php echo $direction?>" lang="<?php echo $lang?>" xml:lang="<?php echo $lang?>" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>

<title><?php echo $title?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php if ($keywords): ?>
<meta name="keywords" content="<?php echo $keywords?>" />
<?php endif; ?>
<?php 
if ($description): ?>
<meta name="description" content="<?php echo $description?>" />
<?php endif; ?>
<?php 
echo $this->document->shoppica_fb_meta;  ?>

<base href="<?php echo $this->document->shoppica_base_ssl?>" />
<?php if ($icon): ?>
<link href="<?php echo $icon?>" rel="icon" />
<?php endif; ?>
<?php 
foreach ($links as $link): ?>
<link href="<?php echo $link['href']; ?>" rel="<?php echo $link['rel']; ?>" />
<?php endforeach; ?>

<link rel="stylesheet" type="text/css" href="catalog/view/theme/shoppica/stylesheet/960.css" media="all" />
<link rel="stylesheet" type="text/css" href="catalog/view/theme/shoppica/stylesheet/screen.css?v=1.0.11" media="screen" />
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="catalog/view/theme/shoppica/stylesheet/ie.css?v=1.0.11" media="screen" />
<![endif]-->

<?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 endforeach; ?>

<style type="text/css">
  <?php if (isset($this->document->shoppica_modify_theme_css_temp)) echo $this->document->shoppica_modify_theme_css_temp?>
</style>

<script type="text/javascript" src="http<?php if(isHTTPS()) echo 's'?>://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript" src="http<?php if(isHTTPS()) echo 's'?>://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>

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

<?php echo $google_analytics?>
</head>
<body<?php if (isset($this->document->shoppica_layout_type) && $this->document->shoppica_layout_type != 'full') echo ' class="s_layout_fixed"'?>>

<?php if (isset($this->document->shoppica_modify_theme)) echo $this->document->shoppica_modify_theme?>
<input type="hidden" id="main_color" value="#<?php echo $this->document->shoppica_color_themes_config['theme_colors']['main_color'?>" />
<input type="hidden" id="secondary_color" value="#<?php echo $this->document->shoppica_color_themes_config['theme_colors']['secondary_color'?>" />



<div id="wrapper">


  <!-- ---------------------- -->
  <!--      H E A D E R       -->
  <!-- ---------------------- -->
  <div id="header" class="container_12 clearfix">
    <div class="grid_12">

      <?php if ($logo): ?>

      <a id="site_logo" href="<?php echo $this->document->shoppica_base_http?>">
        <img src="<?php echo $logo?>" title="<?php echo $name?>" alt="<?php echo $name?>" />

      </a>

<p id="welcome_message">
<?php if (!$logged) echo $text_welcome; else echo $text_logged?>
&nbsp;&nbsp;<a href="http://bakkoop.com/siparis/index.php?route=product/pricelist">Hızlı SipariÅŸ GiriÅŸi</a>&nbsp;&nbsp; <a href="<?php echo $cart?>"><?php echo $text_cart?></a>


          

      <?php endif; ?>


      <div id="top_navigation" class="s_<?php echo $this->config->get('shoppica_show_search_bar') ? 'static' 'dynamic' ?>">

        <?php if (!$this->document->in_maintenance): ?>

        <?php if ($this->config->get('shoppica_show_search_bar') == '0'): ?>


        <div id="site_search">

          <a id="show_search" class="s_search_button" href="javascript:;" title="<?php echo $text_search?>"></a>

          <div id="search_bar" class="clearfix">

            <input id="filter_keyword" type="text" name="filter_name"<?php if ($filter_name): ?> value="<?php echo $filter_name?>"<?php endif; ?> title="<?php echo $text_search?>" />
            <a id="search_button" class="s_button_1 s_button_1_small s_secondary_color_bgr"><span class="s_text"><?php echo $text_search?></span></a>
          </div>

        </div>

        <?php else: ?>

        <div id="site_search">

          <input id="filter_keyword" type="text" name="filter_name"<?php if ($filter_name): ?> value="<?php echo $filter_name?>"<?php endif; ?> title="<?php echo $text_search?>" />
          <a id="search_button" class="s_search_button" href="javascript:;" title="<?php echo $text_search?>"></a>

        </div>

        <?php endif; ?>

        <?php endif; ?>

        <?php if (count($currencies) > && !$this->document->in_maintenance): ?>

        <form action="<?php echo $action?>" method="post" id="currency_form">
          <div id="language_switcher" class="s_switcher">
            <?php foreach ($currencies as $currency): ?>
            <?php if ($currency['code'] == $currency_code): ?>
            <span class="s_selected"><?php echo $currency['title']; ?></span>
            <?php endif; ?>
            <?php endforeach; ?>
            <ul class="s_options">
              <?php foreach ($currencies as $currency): ?>
              <li>
                <a href="javascript:;" onclick="$('input[name=\'currency_code\']').attr('value', '<?php echo $currency['code']; ?>'); $('#currency_form').submit();"><?php echo $currency['title']; ?></a>
              </li>
              <?php endforeach; ?>
            </ul>
          </div>
          <input class="s_hidden" type="hidden" name="currency_code" value="" />
          <input class="s_hidden" type="hidden" name="redirect" value="<?php echo $redirect?>" />
        </form>
        <?php endif; ?>

        <?php if ($languages && count($languages) > 1): ?>
        <form action="<?php echo $action?>" method="post" id="language_form">

          <div id="currency_switcher" class="s_switcher">

            <?php foreach ($languages as $language): ?>
            <?php if ($language['code'] == $language_code): ?>

            <span class="s_selected"><img src="catalog/view/theme/shoppica/images/flags/<?php echo $language['image']; ?>" alt="<?php echo $language['name']; ?>" /> <?php echo $language['name']; ?></span>
            <?php endif; ?>
            <?php endforeach; ?>
            <ul class="s_options">
              <?php foreach ($languages as $language): ?>
              <li>

                <a href="javascript:;" onclick="$('input[name=\'language_code\']').attr('value', '<?php echo $language['code']; ?>'); $('#language_form').submit();">
                  <img src="catalog/view/theme/shoppica/images/flags/<?php echo $language['image']; ?>" alt="<?php echo $language['name']; ?>" /> <?php echo $language['name']; ?>
                </a>
              </li>
              <?php endforeach; ?>
            </ul>
          </div>
          <input class="s_hidden" type="hidden" name="language_code" value="" />
          <input class="s_hidden" type="hidden" name="redirect" value="<?php echo $redirect?>" />
        </form>
        <?php endif; ?>

      </div>

      <?php if (!$this->document->in_maintenance): ?>


      <div id="system_navigation">
        <?php if ($this->config->get('shoppica_cart_menu_position') == 'above'): ?>
        <div id="cart_menu" class="s_nav">
          <a href="javascript:;">
            <span class="s_icon"></span>
            <?php if ($this->config->get('shoppica_show_cart_label') == '1'): ?>
            <small class="s_text"><?php echo $this->document->shoppica_text_cart;?></small>
            <?php endif; ?>
            <span class="s_grand_total s_main_color"><?php echo strip_tags($this->document->shoppica_total_price); ?></span>
          </a>
          <div class="s_submenu s_cart_holder">
            <?php echo $this->document->shoppica_cart_contents?>
          </div>
        </div>
        <?php endif; ?>
        <?php if (!$this->document->in_maintenance): ?>
        <?php endif; ?>
        <ul class="s_list_1 clearfix">
        </ul>
        
      </div>

      <div id="categories" class="s_nav">
        <?php echo $this->document->shoppica_categories?>
      </div>

      <?php if ($this->config->get('shoppica_cart_menu_position') == 'right'): ?>
      <div id="cart_menu" class="s_nav">
        <a href="javascript:;">
          <span class="s_icon"></span>
          <?php if ($this->config->get('shoppica_show_cart_label') == '1'): ?>
          <small class="s_text"><?php echo $this->document->shoppica_text_cart;?></small>
          <?php endif; ?>
          <span class="s_grand_total s_main_color"><?php echo strip_tags($this->document->shoppica_total_price); ?></span>
        </a>
        <div class="s_submenu s_cart_holder">
          <?php echo $this->document->shoppica_cart_contents?>

        </div>
      </div>

      <?php endif; ?>

      <?php endif; ?>

    </div>
  </div>
  <!-- end of header -->

  <?php if (isset($common_error)): ?>
  <div class="s_server_msg">
    <?php echo $common_error?>
  </div>
  <?php endif; ?>
Alıntı Yaparak Cevapla
Paylaş!
nickelajv
Üye
***
Üye user avatar
Çevrimdışı

Mesajlar: 99
Konular: 21
Katılma Tarihi: Feb 2012
Rep Puanı: 1
Teşekkürler: 63
4 Mesajına, 5 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 03-29-2012 04:29 PM
Çok güzel oldu, ellerinize sağlık
sadece z-index kısmını ayarlayamadım sanırım alttaki menü ile karışıyor.


Ekli Dosya(lar) Önizleme(ler)
Resmi Büyütmek İçin Tıklayın   
Alıntı Yaparak Cevapla
Paylaş!

« Önceki | Sonraki »
Cevapla  Gönder 

Ajax Arama Eklentisi (vqmod) 1.5.1.X Konusunun Linki Direk Link
Ajax Arama Eklentisi (vqmod) 1.5.1.X Konusunun HTML Kodu HTML Link
Ajax Arama Eklentisi (vqmod) 1.5.1.X Konusu BBCode Linki BBCode Link
Ajax Arama Eklentisi (vqmod) 1.5.1.X Konusunu Paylaş Sosyal Paylaş

Benzeyen Konular
Konu: Yazar Cevaplar: Gösterim: Son Mesaj
  Resimlere Filigran Ekleme Vqmod TECHNOLOG 15 13,733 09-26-2018 01:02 AM
Son Mesaj: uqursen
  [Mod] Ajax Resimli Arama + Fiyat Gösterme Renkli e-ticaretdersleri 3 3,430 04-05-2018 09:51 AM
Son Mesaj: ufuk456
  [Mod] Gelişmiş Yorum Eklentisi e-ticaretdersleri 4 5,116 03-26-2017 12:56 AM
Son Mesaj: Türk_Che
  Opencart 1.5.1.x Ürün detay video ekleme tab modülü (VQMOD) osdem66 15 15,238 03-06-2017 06:18 AM
Son Mesaj: akdj06
  Kategori Ürün Sayısı Kaldırma (VQMod) kullanıcı2 12 11,484 08-22-2016 12:11 AM
Son Mesaj: ahmetozyilmaz
  vqmod hatası hayaldesing 2 2,747 03-30-2016 07:31 PM
Son Mesaj: cridak
Sad vqmod kurdum site tepki vermiyor cok **** bi yardım nevruzenci 0 1,808 09-17-2015 11:44 AM
Son Mesaj: nevruzenci
  vqmod kurulu gösteriyor ama hiçbir modülü çalıştıramıyorum yartasi 8 4,347 09-05-2015 12:46 PM
Son Mesaj: yartasi
  VQMod kurdum aktif değil hayaldesing 1 1,853 09-03-2015 11:23 AM
Son Mesaj: turkojen34
  Hızlı Sipariş Sayfası [vqmod] e-ticaretdersleri 17 12,244 08-24-2015 09:54 AM
Son Mesaj: ismail-ay

Ajax Arama Eklentisi (vqmod) 1.5.1.X indir, Ajax Arama Eklentisi (vqmod) 1.5.1.X Videosu, Ajax Arama Eklentisi (vqmod) 1.5.1.X online izle, Ajax Arama Eklentisi (vqmod) 1.5.1.X Bedava indir, Ajax Arama Eklentisi (vqmod) 1.5.1.X Yükle, Ajax Arama Eklentisi (vqmod) 1.5.1.X Hakkında, Ajax Arama Eklentisi (vqmod) 1.5.1.X nedir, Ajax Arama Eklentisi (vqmod) 1.5.1.X Free indir, Ajax Arama Eklentisi (vqmod) 1.5.1.X oyunu, Ajax Arama Eklentisi (vqmod) 1.5.1.X download


Forum Atla: