Çok Asi
OpenCart-TR
- Katılım
- 13 Nis 2010
- Mesajlar
- 54
- Tepkime puanı
- 0
- Puanları
- 0
İletişim sayfamıza tel ve adres bilgilerimizi ekledik. Ama birde iletişim formu var. Biz onu istemiyoruz bunu nasıl kaldırabiliriz?
Bu sorunu hallettim. /public_html/catalog/view/theme/default/template/information içinde bulunan aşağıdaki kodları silince iletişim formu kalkıyor.
Bu sorunu hallettim. /public_html/catalog/view/theme/default/template/information içinde bulunan aşağıdaki kodları silince iletişim formu kalkıyor.
PHP:
<div class="content">
<table width="100%">
<tr>
<td><?php echo $entry_name; ?><br />
<input type="text" name="name" value="<?php echo $name; ?>" />
<?php if ($error_name) { ?>
<span class="error"><?php echo $error_name; ?></span>
<?php } ?></td>
</tr>
<tr>
<td><?php echo $entry_email; ?><br />
<input type="text" name="email" value="<?php echo $email; ?>" />
<?php if ($error_email) { ?>
<span class="error"><?php echo $error_email; ?></span>
<?php } ?></td>
</tr>
<tr>
<td><?php echo $entry_enquiry; ?><br />
<textarea name="enquiry" style="width: 99%;" rows="10"><?php echo $enquiry; ?></textarea>
<?php if ($error_enquiry) { ?>
<span class="error"><?php echo $error_enquiry; ?></span>
<?php } ?></td>
</tr>
<tr>
<td><?php echo $entry_captcha; ?><br />
<input type="text" name="captcha" value="<?php echo $captcha; ?>" />
<?php if ($error_captcha) { ?>
<span class="error"><?php echo $error_captcha; ?></span>
<?php } ?>
<br />
<img src="index.php?route=information/contact/captcha" /></td>
</tr>
</table>
</div>
<div class="buttons">
<table>
<tr>
<td align="right"><a onclick="$('#contact').submit();" class="button"><span><?php echo $button_continue; ?></span></a></td>
</tr>
</table>
</div>