You must modify contact.php from /catalog/controller/information
Add after
$data[‘error_enquiry’] = ”;
}
—
if (isset($this->error[‘captcha’])) {
$data[‘error_captcha’] = $this->error[‘captcha’];
} else {
$data[‘error_captcha’] = ”;
}
++++++ after
$this->error[‘enquiry’] = $this->language->get(‘error_enquiry’);
}
add
if (empty($this->session->data[‘captcha’]) || ($this->session->data[‘captcha’] != $this->request->post[‘captcha’])) {
$this->error[‘captcha’] = $this->language->get(‘error_captcha’);
}
—-
after $data[‘entry_enquiry’] = $this->language->get(‘entry_enquiry’);
add
$data[‘entry_captcha’] = $this->language->get(‘entry_captcha’);