tr-opencart

     
avatar Şuanki Zaman: 12-19-2024, 01:57 AMHoşgeldin Misafir !
  Şifremi Hatırlat   kayıt ol
opencart temaları

Karşılaştırma (Compare) Hatası

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  tunishop - Görüntüleme - Okunma  2240 - Yorum  0

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

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



Kişisel Bilgileri: v
Konu Tarihi: 03-11-2013 03:59 PM

Merhaba arkadaşlar.

Karşılaştırma listeme ürünü ekliyorum ardından listeye gittiğimde sepete ekle ve listeden çıkar butonu var fakat sepete ekle çalışıyor, çıkartma butonu çalışmıyor. Buton üzerinde;

"Notice: Undefined variable: text_remove in /home/.......com/httpdocs/catalog/view/theme/universal/template/product/compare.tpl on line 142"

yazıyor.

Butona tıkladığımda;
Not Found
The requested document was not found on this server.

Web Server at @domain_name@

hatası alıyorum..

Kodlarım;
compare.tpl
Kod:
<?php echo $header; ?>
<?php $grid = 12; if($column_left != '') { $grid = $grid-3; } if($column_right != '') { $grid = $grid-3; } ?>

<!-- Content -->

<div id="content-pages">
<div class="set-size">

    <?php echo $content_top; ?>
    <?php if($column_left != '') { echo '<div class="grid-3 float-left">'.$column_left.'</div>';  } ?>
    
    <!-- Grid 9 -->
    
    <div class="grid-<?php echo $grid; ?> float-left">
            
        <!-- Box -->
        
        <div class="box">
        
            <!-- Title -->
            
            <div class="box-heading"><?php echo $heading_title; ?></div>
          <div class="breadcrumb">
            <?php foreach ($breadcrumbs as $breadcrumb) { ?>
            <?php echo $breadcrumb['separator']; ?><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a>
            <?php } ?>
          </div>            
            <!-- Content -->
            
            <div class="box-content">
            
  <?php if ($products) { ?>
  <table class="compare-info">
    <thead>
      <tr>
        <td colspan="<?php echo count($products) + 1; ?>"><?php echo $text_product; ?></td>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td><?php echo $text_name; ?></td>
        <?php foreach ($products as $product) { ?>
        <td class="name"><a href="<?php echo $products[$product['product_id']]['href']; ?>"><?php echo $products[$product['product_id']]['name']; ?></a></td>
        <?php } ?>
      </tr>
      <tr>
        <td><?php echo $text_image; ?></td>
        <?php foreach ($products as $product) { ?>
        <td><?php if ($products[$product['product_id']]['thumb']) { ?>
          <img src="<?php echo $products[$product['product_id']]['thumb']; ?>" alt="<?php echo $products[$product['product_id']]['name']; ?>" />
          <?php } ?></td>
        <?php } ?>
      </tr>
      <tr>
        <td><?php echo $text_price; ?></td>
        <?php foreach ($products as $product) { ?>
        <td><?php if ($products[$product['product_id']]['price']) { ?>
          <?php if (!$products[$product['product_id']]['special']) { ?>
          <?php echo $products[$product['product_id']]['price']; ?>
          <?php } else { ?>
          <span class="price-old"><?php echo $products[$product['product_id']]['price']; ?></span> <span class="price-new"><?php echo $products[$product['product_id']]['special']; ?></span>
          <?php } ?>
          <?php } ?></td>
        <?php } ?>
      </tr>
      <tr>
        <td><?php echo $text_model; ?></td>
        <?php foreach ($products as $product) { ?>
        <td><?php echo $products[$product['product_id']]['model']; ?></td>
        <?php } ?>
      </tr>
      <tr>
        <td><?php echo $text_manufacturer; ?></td>
        <?php foreach ($products as $product) { ?>
        <td><?php echo $products[$product['product_id']]['manufacturer']; ?></td>
        <?php } ?>
      </tr>
      <tr>
        <td><?php echo $text_availability; ?></td>
        <?php foreach ($products as $product) { ?>
        <td><?php echo $products[$product['product_id']]['availability']; ?></td>
        <?php } ?>
      </tr>
      <tr>
        <td><?php echo $text_rating; ?></td>
        <?php foreach ($products as $product) { ?>
        <td><img src="catalog/view/theme/default/image/stars-<?php echo $products[$product['product_id']]['rating']; ?>.png" alt="<?php echo $products[$product['product_id']]['reviews']; ?>" /><br />
          <?php echo $products[$product['product_id']]['reviews']; ?></td>
        <?php } ?>
      </tr>
      <tr>
        <td><?php echo $text_summary; ?></td>
        <?php foreach ($products as $product) { ?>
        <td class="description"><?php echo $products[$product['product_id']]['description']; ?></td>
        <?php } ?>
      </tr>
      <tr>
        <td><?php echo $text_weight; ?></td>
        <?php foreach ($products as $product) { ?>
        <td><?php echo $products[$product['product_id']]['weight']; ?></td>
        <?php } ?>
      </tr>
      <tr>
        <td><?php echo $text_dimension; ?></td>
        <?php foreach ($products as $product) { ?>
        <td><?php echo $products[$product['product_id']]['length']; ?> x <?php echo $products[$product['product_id']]['width']; ?> x <?php echo $products[$product['product_id']]['height']; ?></td>
        <?php } ?>
      </tr>
    </tbody>
    <?php foreach ($attribute_groups as $attribute_group) { ?>
    <thead>
      <tr>
        <td colspan="<?php echo count($products) + 1; ?>"><?php echo $attribute_group['name']; ?></td>
      </tr>
    </thead>
    <?php foreach ($attribute_group['attribute'] as $key => $attribute) { ?>
    <tbody>
      <tr>
        <td><?php echo $attribute['name']; ?></td>
        <?php foreach ($products as $product) { ?>
        <?php if (isset($products[$product['product_id']]['attribute'][$key])) { ?>
        <td><?php echo $products[$product['product_id']]['attribute'][$key]; ?></td>
        <?php } else { ?>
        <td></td>
        <?php } ?>
        <?php } ?>
      </tr>
    </tbody>
    <?php } ?>
    <?php } ?>
    <tr>
      <td></td>
      <?php foreach ($products as $product) { ?>
      <td><a onclick="addToCart('<?php echo $product['product_id']; ?>');" class="button"><span><?php echo $button_cart; ?></span></a></td>
      <?php } ?>
    </tr>
    <tr>
      <td></td>
      <?php foreach ($products as $product) { ?>
      <td><form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data">
          <input type="hidden" name="remove" value="<?php echo $product['product_id']; ?>" />
          <a class="button" onclick="$(this).parent().submit();"><span><?php echo $text_remove; ?></span></a>
        </form></td>
      <?php } ?>
    </tr>
  </table>
  <div class="buttons">
    <div class="right"><a href="<?php echo $continue; ?>" class="button"><span><?php echo $button_continue; ?></span></a></div>
  </div>
  <?php } else { ?>
  <div class="content"><?php echo $text_empty; ?></div>
  <div class="buttons">
    <div class="right"><a href="<?php echo $continue; ?>" class="button"><span><?php echo $button_continue; ?></span></a></div>
  </div>
  <?php } ?>

            </div>
        
        </div>
        
        <!-- End Box -->

    </div>
    
    <!-- End Grid 9 -->
    
    <?php if($column_right != '') { echo '<div class="grid-3 float-left">'.$column_right.'</div>';  } ?>
        
    <?php echo $content_bottom; ?>

    <p class="clear"></p>

</div>
</div>

<!-- End Content page -->

<?php echo $footer; ?>



TÜRKÇE COMPARE.TPL
Kod:
<?php

// Heading
$_['heading_title']     = 'Ürün Karşılaştırma';

// Text
$_['text_product']      = 'Ürün Detayları';
$_['text_name']         = 'Ürün';
$_['text_image']        = 'Resim';
$_['text_price']        = 'Fiyatı';
$_['text_model']        = 'Ürün Kodu';
$_['text_manufacturer'] = 'Marka';
$_['text_availability'] = 'Stok Durumu';
$_['text_instock']      = 'Stokta var';
$_['text_rating']       = 'Oylama';
$_['text_reviews']      = '%s yorum yapılmış.';
$_['text_summary']      = 'Özet';
$_['text_weight']       = 'Ağırlık';
$_['text_dimension']    = 'Boyutları (U x G x Y)';
$_['text_compare']      = 'Ürün Karşılaştır (%s)';
$_['text_success']      = 'Başarılı: <a href="%s">%s</a> ürünü <a href="%s">ürün karşılaştırma</a> listenize eklendi!';
$_['text_remove']       = 'Başarılı: <a href="%s">%s</a> ürünü <a href="%s">ürün karşılaştırma</a> listeniz değiştirildi!';
$_['text_empty']        = 'Karşılaştırmak için bir ürün seçmediniz.';
?>
Alıntı Yaparak Cevapla
Paylaş!

« Önceki | Sonraki »
Cevapla  Gönder 

Karşılaştırma (Compare) Hatası Konusunun Linki Direk Link
Karşılaştırma (Compare) Hatası Konusunun HTML Kodu HTML Link
Karşılaştırma (Compare) Hatası Konusu BBCode Linki BBCode Link
Karşılaştırma (Compare) Hatası Konusunu Paylaş Sosyal Paylaş

Benzeyen Konular
Konu: Yazar Cevaplar: Gösterim: Son Mesaj
  HTTP ERROR 500 Hatası ( ücretli yardım yok mu) :@ jackall46 1 6,081 11-30-2022 06:03 PM
Son Mesaj: aydinerkan
  HTTP ERROR 500 Hatası (paralı destek olabilir) jackall46 0 6,000 11-05-2022 08:54 PM
Son Mesaj: jackall46
Video internal server hatası osman 4 35,387 11-02-2019 11:24 AM
Son Mesaj: myki09
  vqmod hatası tolga35 2 16,774 03-21-2018 09:22 PM
Son Mesaj: 63kanun
  Opencart 1.5.x Çözülemeyen Yetkilendirme Hatası qene 2 2,121 10-12-2017 09:51 AM
Son Mesaj: qene
  HTTP ERROR 500 hatası kazakcii 0 2,273 11-11-2016 04:32 PM
Son Mesaj: kazakcii
  Admin paneli hatasi alfamet 4 3,540 11-05-2016 01:53 AM
Son Mesaj: durgutmurat
  image php hatası osman 7 8,886 09-01-2016 10:01 PM
Son Mesaj: elif
  https hatası polat_yener 2 3,061 02-20-2016 03:32 PM
Son Mesaj: maxtor
  Opencart alt klasöre kurulumda seo url hatası [ÇÖZÜM] agulday 2 6,691 02-19-2016 01:30 AM
Son Mesaj: slmvrn

Karşılaştırma (Compare) Hatası indir, Karşılaştırma (Compare) Hatası Videosu, Karşılaştırma (Compare) Hatası online izle, Karşılaştırma (Compare) Hatası Bedava indir, Karşılaştırma (Compare) Hatası Yükle, Karşılaştırma (Compare) Hatası Hakkında, Karşılaştırma (Compare) Hatası nedir, Karşılaştırma (Compare) Hatası Free indir, Karşılaştırma (Compare) Hatası oyunu, Karşılaştırma (Compare) Hatası download


Forum Atla: