Şimdi anlatacağım ama inş. anlarsınız..
İlk önce
catalog\controller\account\register.php ye girin.
Ardından resimdeki gibi yeni bir satır olarak bu kodu girin;
PHP:
if (strlen(utf8_decode($this->request->post['fax'])) == "") {
$this->error['fax'] = $this->language->get('error_fax');
}
____________________________________________________________________________________
Sonra resimdeki gibi yine bu kodu girin;
PHP:
if (isset($this->error['fax'])) {
$this->data['error_fax'] = $this->error['fax'];
} else {
$this->data['error_fax'] = '';
}
____________________________________________________________________________________
catalog\language\DİL_DOSYASI\account\register.php bu yoldaki gibi kaç tane dil dosyanız var ise resimdeki gibi o dillere uygun "Lütfen fax alanını doldurun!" diye bir yazı ekleyin.
____________________________________________________________________________________
Son olarakta
catalog\view\theme\TEMA_ADI\template\account\register.tpl'yi resimde görüldüğü gibi değiştirin;
PHP:
<tr>
<td><span class="required">*</span> <?php echo $entry_fax; ?></td>
<td><input type="text" name="fax" value="<?php echo $fax; ?>" />
<?php if ($error_fax) { ?>
<span class="error"><?php echo $error_fax; ?></span>
<?php } ?></td>
</tr>
Kolay gelsin..