tr-opencart

     
avatar Şuanki Zaman: 11-16-2024, 01:47 PMHoşgeldin Misafir !
  Şifremi Hatırlat   kayıt ol
opencart temaları

Opencart 2 Adminden Ürüne Yorumuna Cevap Verme Yapımda

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  e-ticaretdersleri - Görüntüleme - Okunma  2270 - Yorum  1

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: 11-21-2015 09:26 PM

Bu modifikasyon1.5.x içindi şimdi 2.x için oldu birz dinleneyim paylaşacağım resimler ektedir.


Ekli Dosya(lar) Önizleme(ler)
Resmi Büyütmek İçin Tıklayın    Resmi Büyütmek İçin Tıklayın   
e-ticaretdersleri
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: 11-22-2015 06:05 PM
Merhaba arkadaşlar sizlere bugün opencart 1.5.x ten çeviri yapıp opencart 2.x sürümne uygun hale getirerek modifikasyonize ettiğim ürün yorumlarına adminden cevap verme modifikasyonunu inceleyeceğiz.



Ürün Yorumuna Adminden Cevap Verme Nedir ?

Bu modifikasyon opencart 1.5.x versiyonlarında geçerliydi akşam yapmış olduğum modifikasyon ile opencart 2.x sürümlerinde çalışr hale getirdim. Bu modifikasyonun amacı üyelerinizin yada ziyaetçilerinizin ürünlerine yapmış olduğu yorumlara normal kurulumlarda tekrar ürün sayfasında giriş yaıp cevap verebiliyorduk. Bu modfikasyon ile adminden yapılan yorumlara cevap vermek artık çok kolay. Kişinin yorumuna istinaden alt kısmda cevap kutucuğu eklenmekte ve burada kişiye cevap yazabileceksiniz.


Ürün Yorumuna Adminden Cevap Verme Kurulum ?



Kurulumumuz tamamen manuel işlem olup biraz uzundur. Soluklu bir makale için hazır olun.



Dosyamızı Açalım : admin/model/catalog/



Bulalım :



Kod:
$this->db->query("INSERT INTO " . DB_PREFIX . "review SET author = '" . $this->db->escape($data['author']) . "', product_id = '" . (int)$data['product_id'] . "', text = '" . $this->db->escape(strip_tags($data['text'])) . "', rating = '" . (int)$data['rating'] . "', status = '" . (int)$data['status'] . "', date_added = NOW()");


Değiştirelim :



Kod:
/* aboc - reply to review */ $this->db->query("INSERT INTO " . DB_PREFIX . "review SET author = '" . $this->db->escape($data['author']) . "', product_id = '" . $this->db->escape($data['product_id']) . "', text = '" . $this->db->escape(strip_tags($data['text'])) . "', textadmin = '" . $this->db->escape(strip_tags($data['textadmin'])) . "', rating = '" . (int)$data['rating'] . "', status = '" . (int)$data['status'] . "', date_added = NOW()");


Bulalım :



Kod:
$this->db->query("UPDATE " . DB_PREFIX . "review SET author = '" . $this->db->escape($data['author']) . "', product_id = '" . (int)$data['product_id'] . "', text = '" . $this->db->escape(strip_tags($data['text'])) . "', rating = '" . (int)$data['rating'] . "', status = '" . (int)$data['status'] . "', date_modified = NOW() WHERE review_id = '" . (int)$review_id . "'");


Değiştirelim :



Kod:
/* aboc - reply to review */ $this->db->query("UPDATE " . DB_PREFIX . "review SET author = '" . $this->db->escape($data['author']) . "', product_id = '" . $this->db->escape($data['product_id']) . "', text = '" . $this->db->escape(strip_tags($data['text'])) . "', textadmin = '" . $this->db->escape(strip_tags($data['textadmin'])) . "', rating = '" . (int)$data['rating'] . "', status = '" . (int)$data['status'] . "', date_added = NOW() WHERE review_id = '" . (int)$review_id . "'");


Dosyamızı Açalım :
admin/controller/catalog/



review.php



Bulalım :



Kod:
$this->getList();


Üst Satıra Ekleyelim :



Kod:
$this->checkFieldTextadmin();


Bulalım :



Alıntı:public function edit() {


Üst Satıra Ekleyelim :



Kod:
public function checkFieldTextadmin() {
      $hasTextadminField = FALSE;
      $result = $this->db->query( "DESCRIBE `".DB_PREFIX."review`;" );
      foreach ($result->rows as $row) {
         if ($row['Field'] == 'textadmin') {
            $hasTextadminField = TRUE;
            break;
         }
      }
      if (!$hasTextadminField) {
         $sql = "ALTER TABLE `".DB_PREFIX."review` ADD `textadmin` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' AFTER `text`";
         $this->db->query( $sql );
      }
    }


Bulalım Bu satır iki yerde var iki yerinde bir üst kısmına ekleyelim :



Kod:
$data['entry_text'] = $this->language->get('entry_text');


Üst Kısmına Ekle:



Kod:
$data['entry_textadmin'] = $this->language->get('entry_textadmin');


Bulalım :



Kod:
if (isset($this->request->post['rating'])) {


Üst Satırına Ekleyelim :



Kod:
if (isset($this->request->post['textadmin'])) {
            $data['textadmin'] = $this->request->post['textadmin'];
        } elseif (!empty($review_info)) {
            $data['textadmin'] = $review_info['textadmin'];
        } else {
            $this->data['textadmin'] = '';
        }


Dosyamızı Açalım : admin/laguage/dildosyan/



dildosyan.php



Ekleyelim :



Alıntı:$_['entry_textadmin'] = 'Reply:';


Bu satırı Bul :



Kod:
<div class="form-group required">
            <label class="col-sm-2 control-label" for="input-text"><?php echo $entry_text; ?></label>
            <div class="col-sm-10">
              <textarea name="text" cols="60" rows="8" placeholder="<?php echo $entry_text; ?>" id="input-text" class="form-control"><?php echo $text; ?></textarea>
              <?php if ($error_text) { ?>
              <div class="text-danger"><?php echo $error_text; ?></div>
              <?php } ?>
            </div>
          </div>


Üst Satırın Altına Ekle :



Kod:
<div class="form-group required">
            <label class="col-sm-2 control-label" for="input-text"><?php echo $entry_textadmin; ?></label>
            <div class="col-sm-10">
              <textarea  cols="60" rows="8" placeholder="<?php echo $entry_textadmin; ?>"  name="textadmin" id="input-text" class="form-control"><?php echo $textadmin; ?></textarea>
              <?php if ($error_text) { ?>
              <div class="text-danger"><?php echo $error_text; ?></div>
              <?php } ?>
            </div>
          </div>



Dosyamızı Açalım : catalog/model/catalog/



review.php



Bulalım :



Kod:
$this->db->query("INSERT INTO " . DB_PREFIX . "review SET author = '" . $this->db->escape($data['name']) . "', customer_id = '" . (int)$this->customer->getId() . "', product_id = '" . (int)$product_id . "', text = '" . $this->db->escape($data['text']) . "', rating = '" . (int)$data['rating'] . "', date_added = NOW()");

Değiştirelim :



Kod:
if(!isset($data['textadmin'])){
            $data['textadmin'] = "";
        }
        $this->db->query("INSERT INTO " . DB_PREFIX . "review SET author = '" . $this->db->escape($data['name']) . "', customer_id = '" . (int)$this->customer->getId() . "', product_id = '" . (int)$product_id . "', text = '" . $this->db->escape($data['text']) . "', textadmin = '" . $this->db->escape($data['textadmin']) . "', rating = '" . (int)$data['rating'] . "', date_added = NOW()");

Bulalım :



Kod:
$query = $this->db->query("SELECT r.review_id, r.author, r.rating, r.text, p.product_id, pd.name, p.price, p.image, r.date_added FROM " . DB_PREFIX . "review r LEFT JOIN " . DB_PREFIX . "product p ON (r.product_id = p.product_id) LEFT JOIN " . DB_PREFIX . "product_description pd ON (p.product_id = pd.product_id) WHERE p.product_id = '" . (int)$product_id . "' AND p.date_available <= NOW() AND p.status = '1' AND r.status = '1' AND pd.language_id = '" . (int)$this->config->get('config_language_id') . "' ORDER BY r.date_added DESC LIMIT " . (int)$start . "," . (int)$limit);

Değiştirelim :



Kod:
$query = $this->db->query("SELECT r.review_id, r.author, r.rating, r.text, r.textadmin, p.product_id, pd.name, p.price, p.image, r.date_added FROM " . DB_PREFIX . "review r LEFT JOIN " . DB_PREFIX . "product p ON (r.product_id = p.product_id) LEFT JOIN " . DB_PREFIX . "product_description pd ON (p.product_id = pd.product_id) WHERE p.product_id = '" . (int)$product_id . "' AND p.date_available <= NOW() AND p.status = '1' AND r.status = '1' AND pd.language_id = '" . (int)$this->config->get('config_language_id') . "' ORDER BY r.date_added DESC LIMIT " . (int)$start . "," . (int)$limit);



Dosyamızı Açalım : catalog/controller/product/



product.php



Bul :



Kod:
'text'       => nl2br($result['text']),



Alt Satıra Ekle :



Kod:
'textadmin'       => $result['textadmin'],



Dosyamızı Açalım : catalog/view/theme/seninteman/template/product/



review.tpl



bu satırı bul



Kod:
<tr>
    <td style="width: 50%;"><strong><?php echo $review['author']; ?></strong></td>
    <td class="text-right"><?php echo $review['date_added']; ?></td>
  </tr>
  <tr>
    <td colspan="2"><p><?php echo $review['text']; ?></p>
      <?php for ($i = 1; $i <= 5; $i++) { ?>
      <?php if ($review['rating'] < $i) { ?>
      <span class="fa fa-stack"><i class="fa fa-star-o fa-stack-2x"></i></span>
      <?php } else { ?>
      <span class="fa fa-stack"><i class="fa fa-star fa-stack-2x"></i><i class="fa fa-star-o fa-stack-2x"></i></span>
      <?php } ?>
      <?php } ?></td>
  </tr>



Altına Bu Satırı Ekle :



Kod:
<?php if ($review['textadmin'] != '') { ?>
<tr>
    <td style="width: 50%;"><strong>Yönetim</strong></td>
    <td class="text-right"><?php echo $review['date_added']; ?></td>
  </tr>
  <tr>
    <td colspan="2"><p><?php echo $review['textadmin']; ?></p>
      <?php for ($i = 1; $i <= 5; $i++) { ?>
      <?php if ($review['rating'] < $i) { ?>
      <span class="fa fa-stack"><i class="fa fa-star-o fa-stack-2x"></i></span>
      <?php } else { ?>
      <span class="fa fa-stack"><i class="fa fa-star fa-stack-2x"></i><i class="fa fa-star-o fa-stack-2x"></i></span>
      <?php } ?>
      <?php } ?></td>
  </tr>
  <tr>
    <td style="width: 50%;"></td>
    <td class="text-right"></td>
  </tr>
  <tr>
    <?php } ?>


Kaynak : e-ticaretdersleri
İyi Günlerde kullanın videosu bu akşama hazır.
e-ticaretdersleri
Alıntı Yaparak Cevapla
Paylaş!
 Teşekkür Edenler: omerkaankose

« Önceki | Sonraki »
Cevapla  Gönder 

Opencart 2 Adminden Ürüne Yorumuna Cevap Verme Yapımda  Konusunun Linki Direk Link
Opencart 2 Adminden Ürüne Yorumuna Cevap Verme Yapımda  Konusunun HTML Kodu HTML Link
Opencart 2 Adminden Ürüne Yorumuna Cevap Verme Yapımda  Konusu BBCode Linki BBCode Link
Opencart 2 Adminden Ürüne Yorumuna Cevap Verme Yapımda  Konusunu Paylaş Sosyal Paylaş

Benzeyen Konular
Konu: Yazar Cevaplar: Gösterim: Son Mesaj
  Opencart 2.3.0.2 arama sorunu hrn.coskun 0 709 09-01-2023 04:38 PM
Son Mesaj: hrn.coskun
  [Modifikasyon] Opencart Tüm Versiyonlarda Ürün Detay Sayfasına Ürün teslim tarihi eklemek osdem66 56 29,840 11-22-2022 12:14 AM
Son Mesaj: mustafasinger
  opencart journal ürün detay sayfasındaki sosyal simgeler mehmetvearzu 1 552 11-02-2021 12:40 AM
Son Mesaj: hirdavatustasi
  Opencart da kampanya 0 tl yapamıyorum divaneren 0 1,638 10-20-2020 03:43 PM
Son Mesaj: divaneren
  Opencart 2.x.x.x mail sorunu emir28 1 2,024 05-26-2020 01:44 PM
Son Mesaj: spyll
  Opencart 2.0.x de sipaiş tamamlandı sayfasında bilgiler tarturek2 1 1,972 05-04-2020 04:32 AM
Son Mesaj: teknohiz
  Opencart 2.x Hesabım Linklerini Seolu Hale Getirme cahveci 7 6,515 04-15-2020 01:10 AM
Son Mesaj: digimy
  OpenCart 2.x seo url kozm 4 3,955 02-17-2020 08:23 PM
Son Mesaj: aufuk1
  Opencart Birfatura Sistemine Vergi No Vergi Dairesi ve Tc no bilgilerini aktarma firathuy 0 1,137 01-30-2020 10:48 PM
Son Mesaj: firathuy
  Opencart 3.0.3.2 de Butonları ve Adet Kısmını Ürüne Göre Açıp Kapatabilirmiyiz ? mmmfalcom 1 1,099 01-11-2020 11:08 PM
Son Mesaj: teknohiz

Opencart 2 Adminden Ürüne Yorumuna Cevap Verme Yapımda indir, Opencart 2 Adminden Ürüne Yorumuna Cevap Verme Yapımda Videosu, Opencart 2 Adminden Ürüne Yorumuna Cevap Verme Yapımda online izle, Opencart 2 Adminden Ürüne Yorumuna Cevap Verme Yapımda Bedava indir, Opencart 2 Adminden Ürüne Yorumuna Cevap Verme Yapımda Yükle, Opencart 2 Adminden Ürüne Yorumuna Cevap Verme Yapımda Hakkında, Opencart 2 Adminden Ürüne Yorumuna Cevap Verme Yapımda nedir, Opencart 2 Adminden Ürüne Yorumuna Cevap Verme Yapımda Free indir, Opencart 2 Adminden Ürüne Yorumuna Cevap Verme Yapımda oyunu, Opencart 2 Adminden Ürüne Yorumuna Cevap Verme Yapımda download


Forum Atla: