debreli
OpenCart-TR
musteri sorunları için bir modul.
sadece üyeler soru gönderebiliyor.
admin panelden kendiniz soru ayarlayabilirsiniz
phpmyadminden sorgulatın
aç admin/controller/common/header.php
bul
sonrasına ekle
aç admin/controller/common/header.php
bul
sonrasına ekle
aç admin/language/english/common/header.php
bul
sonrasına ekle
aç admin/view/template/common/header.tpl
bul
sonrasına ekle
aç catalog/controller/account/account.php
bul
sonrasına ekle
aç catalog/language/english/account/account.php
bul
sonrasına ekle
aç catalog/view/theme/default/template/account/account.tpl
bul
sonrasına ekle
bilgiler bloğuna link eklemek için aşağıdaki uygulamaları yapın
aç catalog/controller/module/information.php
bul
sonrasına ekle
aç catalog/language/english/module/information.php
bul
sonrasına ekle
aç catalog/view/theme/default/template/module/information.tpl
bul
sonrasına ekle
kullanıcılar kullanıcı guruplarından izinleri verin.
enson catalog/language/english/account/customer_support.php dosyasını acın
bul
$_['text_no_results'] = 'Why don\'t you ask something?';
altına ekleyin
$_['text_account'] = 'Hesabım';
aynı dosyayı turkish/account/ klasörüne de yapıştırın.içini türkçeleştirin.
sadece üyeler soru gönderebiliyor.
admin panelden kendiniz soru ayarlayabilirsiniz
phpmyadminden sorgulatın
Kod:
/*Table structure for table `customer_support` */
DROP TABLE IF EXISTS `customer_support`;
CREATE TABLE `customer_support` (
`customer_support_id` int(11) NOT NULL AUTO_INCREMENT,
`store_id` int(11) DEFAULT NULL,
`customer_id` int(11) DEFAULT NULL,
`subject` tinytext,
`enquiry` text,
`answer` text,
`date_added` datetime DEFAULT NULL,
`date_answer` datetime DEFAULT NULL,
`customer_support_1st_category_id` int(11) DEFAULT NULL,
`customer_support_2nd_category_id` int(11) DEFAULT NULL,
PRIMARY KEY (`customer_support_id`)
) ;
/*Table structure for table `customer_support_category` */
DROP TABLE IF EXISTS `customer_support_category`;
CREATE TABLE `customer_support_category` (
`category_id` int(11) NOT NULL AUTO_INCREMENT,
`parent_id` int(11) NOT NULL DEFAULT '0',
`sort_order` int(3) NOT NULL DEFAULT '0',
`date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`status` int(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`category_id`)
);
/*Table structure for table `customer_support_category_description` */
DROP TABLE IF EXISTS `customer_support_category_description`;
CREATE TABLE `customer_support_category_description` (
`category_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '',
PRIMARY KEY (`category_id`,`language_id`),
KEY `name` (`name`)
);
/*Table structure for table `customer_support_category_to_store` */
DROP TABLE IF EXISTS `customer_support_category_to_store`;
CREATE TABLE `customer_support_category_to_store` (
`category_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
PRIMARY KEY (`category_id`,`store_id`)
);
aç admin/controller/common/header.php
bul
Kod:
$this->data['text_zone'] = $this->language->get('text_zone');
sonrasına ekle
Kod:
$this->data['text_customer_support'] = $this->language->get('text_customer_support');
aç admin/controller/common/header.php
bul
Kod:
$this->data['zone'] = HTTPS_SERVER . 'index.php?route=localisation/zone&token=' . $this->session->data['token'];
sonrasına ekle
Kod:
$this->data['customer_support'] = HTTPS_SERVER . 'index.php?route=catalog/customer_support&token=' . $this->session->data['token'];
aç admin/language/english/common/header.php
bul
Kod:
$_['error_install'] = 'WARNING: INSTALL FOLDER STILL EXISTS!';
sonrasına ekle
Kod:
$_['text_customer_support'] = '1:1 Customer Support';
aç admin/view/template/common/header.tpl
bul
Kod:
<li><a href="<?php echo $information; ?>"><?php echo $text_information; ?></a></li>
sonrasına ekle
Kod:
<li><a href="<?php echo $customer_support; ?>"><?php echo $text_customer_support; ?></a></li>
aç catalog/controller/account/account.php
bul
Kod:
$this->data['newsletter'] = HTTPS_SERVER . 'index.php?route=account/newsletter';
sonrasına ekle
Kod:
$this->data['text_customer_support'] = $this->language->get('text_customer_support');
$this->data['customer_support'] = HTTPS_SERVER . 'index.php?route=account/customer_support';
aç catalog/language/english/account/account.php
bul
Kod:
$_['text_newsletter'] = 'Subscribe / unsubscribe to newsletter';
sonrasına ekle
Kod:
$_['text_customer_support'] = '1:1 Customer Support';
aç catalog/view/theme/default/template/account/account.tpl
bul
Kod:
<ul>
<li><a href="<?php echo str_replace('&', '&', $newsletter); ?>"><?php echo $text_newsletter; ?></a></li>
</ul>
sonrasına ekle
Kod:
<p><b><?php echo $text_customer_support; ?></b></p>
<ul>
<li><a href="<?php echo str_replace('&', '&', $customer_support); ?>"><?php echo $text_customer_support; ?></a></li>
</ul>
bilgiler bloğuna link eklemek için aşağıdaki uygulamaları yapın
aç catalog/controller/module/information.php
bul
Kod:
$this->data['sitemap'] = HTTP_SERVER . 'index.php?route=information/sitemap';
sonrasına ekle
Kod:
$this->data['text_customer_support'] = $this->language->get('text_customer_support');
$this->data['customer_support'] = HTTPS_SERVER . 'index.php?route=account/customer_support';
aç catalog/language/english/module/information.php
bul
Kod:
$_['text_sitemap'] = 'Site Map';
sonrasına ekle
Kod:
$_['text_customer_support'] = '1:1 Customer Support';
aç catalog/view/theme/default/template/module/information.tpl
bul
Kod:
<li><a href="<?php echo str_replace('&', '&', $sitemap); ?>"><?php echo $text_sitemap; ?></a></li>
sonrasına ekle
Kod:
<li><a href="<?php echo str_replace('&', '&', $customer_support); ?>"><?php echo $text_customer_support; ?></a></li>
kullanıcılar kullanıcı guruplarından izinleri verin.
enson catalog/language/english/account/customer_support.php dosyasını acın
bul
$_['text_no_results'] = 'Why don\'t you ask something?';
altına ekleyin
$_['text_account'] = 'Hesabım';
aynı dosyayı turkish/account/ klasörüne de yapıştırın.içini türkçeleştirin.