Arama (Search) Hatası.Arama yapamıyorum.

appachii

OpenCart-TR
Katılım
8 May 2014
Mesajlar
10
Tepkime puanı
0
Puanları
0
Arkadaşlar sitede arama kutusuna herhangi bir şey yazdığımda enter a basıp arayamıyorum. Yandaki büyüteçi tıklayıp ara dediğimde de resimdeki hatayı alıyorum. Sağlıklı arama yapmak ve enter tuşuna bastığımda arama yapması için hangi dosyayı düzenlemem gerekir ?

72m7Bv.jpg
 

ozandogu

OpenCart-TR
Katılım
6 Haz 2015
Mesajlar
1
Tepkime puanı
0
Puanları
0
/catalog/view/theme/seninteman/template/product acıyorsun burda yapman gereken

12. satır hatası bu kısmı
<?php if ($filter_name) { ?>
<input type="text" name="name" value="<?php echo $name; ?>" />
<?php } else { ?>
<input type="text" name="name" value="<?php echo $name; ?>" onclick="this.value = '';" onkeydown="this.style.color = '000000'" style="color: #999;" />
<?php } ?>

bu şekilde düzenle

<?php if ($search) { ?>
<input type="text" name="search" value="<?php echo $search; ?>" />
<?php } else { ?>
<input type="text" name="search" value="<?php echo $search; ?>" onclick="this.value = '';" onkeydown="this.style.color = '000000'" style="color: #999;" />
<?php } ?>

41. satırıda bu şekilde yap filter yazan yerleri sil
<?php if ($sub_category) { ?>
<input type="checkbox" name="sub_category" value="1" id="sub_category" checked="checked" />
<?php } else { ?>
<input type="checkbox" name="sub_category" value="1" id="sub_category" />
<?php } ?>
<label for="sub_category"><?php echo $text_sub_category; ?></label>


48. satırıda aynı şiklde yap filter yaqzan yerleri sil
<?php if ($description) { ?>
<input type="checkbox" name="description" value="1" id="description" checked="checked" />
<?php } else { ?>
<input type="checkbox" name="description" value="1" id="description" />
<?php } ?>
 
Üst