BanSn
OpenCart-TR
- Katılım
- 20 Eki 2009
- Mesajlar
- 157
- Tepkime puanı
- 0
- Puanları
- 0
- Yaş
- 45
- Konum
- Ankara
- Web sitesi
- www.proxima.web.tr
Merhabalar;
Sitenin kendi iletişim formuna resimde ki gibi;
şeklinde telefon numarası vb hücreler eklemek istiyorsanız;
temanız/template/information/contact.tpl yi aç
tabloda uygun olacak şekilde ve tasarımınızı bozmayacak şekilde ekleyin
kaydedin kapatın.
\catalog\language\turkish\information\contact.php aç
BUL
altına ekle
catalog\controller\information\contact.php aç
Bul
altına ekle
Bul
altına ekle
bul
altına ekle
bul
altına ekle
bul
DEĞİŞTİR
Bu şekilde telefon, firma adı vb hücreleri çoklu olarak ekleyebilirsiniz. tüm adımlar aynı olacak. Sadece son kısımda "Değiştir" şeklinde verilen ifadeye
şeklinde eklemelerinizi yapmayı unutmayın.
Umarım işinize yarar.
Sitenin kendi iletişim formuna resimde ki gibi;
temanız/template/information/contact.tpl yi aç
tabloda uygun olacak şekilde ve tasarımınızı bozmayacak şekilde ekleyin
Kod:
<tr>
<td><?php echo $entry_telefon; ?><br />
<input type="text" name="telefon" value="<?php echo $telefon; ?>" />
<?php if ($error_telefon) { ?>
<span class="error"><?php echo $error_telefon; ?></span>
<?php } ?>
</td>
</tr>
\catalog\language\turkish\information\contact.php aç
BUL
Kod:
$_['entry_email'] = 'E-Posta Adresi:';
Kod:
$_['entry_telefon'] = 'Telefon:';
catalog\controller\information\contact.php aç
Bul
Kod:
$this->data['entry_email'] = $this->language->get('entry_email');
Kod:
$this->data['entry_telefon'] = $this->language->get('entry_telefon');
Bul
Kod:
if (isset($this->error['email'])) {
$this->data['error_email'] = $this->error['email'];
} else {
$this->data['error_email'] = '';
}
Kod:
if (isset($this->error['telefon'])) {
$this->data['error_telefon'] = $this->error['telefon'];
} else {
$this->data['error_telefon'] = '';
}
bul
Kod:
if (isset($this->request->post['email'])) {
$this->data['email'] = $this->request->post['email'];
} else {
$this->data['email'] = '';
}
Kod:
if (isset($this->request->post['telefon'])) {
$this->data['telefon'] = $this->request->post['telefon'];
} else {
$this->data['telefon'] = '';
}
bul
Kod:
if (!preg_match($pattern, $this->request->post['email'])) {
$this->error['email'] = $this->language->get('error_email');
}
Kod:
if ((strlen(utf8_decode($this->request->post['telefon'])) < 3) || (strlen(utf8_decode($this->request->post['telefon'])) > 32)) {
$this->error['telefon'] = $this->language->get('error_telefon');
}
bul
Kod:
$mail->setText(strip_tags(html_entity_decode($enquiry, ENT_QUOTES, 'UTF-8')));
DEĞİŞTİR
Kod:
$msg = $this->request->post['telefon'] . "\n";
$msg .= $this->request->post['enquiry'];
$mail->setText(strip_tags(html_entity_decode($msg, ENT_QUOTES, 'UTF-8')));
Bu şekilde telefon, firma adı vb hücreleri çoklu olarak ekleyebilirsiniz. tüm adımlar aynı olacak. Sadece son kısımda "Değiştir" şeklinde verilen ifadeye
Kod:
$msg = $this->request->post['HÜCRE ADI'] . "\n";
Umarım işinize yarar.