Step 1
Create an “information” page called “Contact”
Step 2
In “Design” Tab, Default select Contact. This will tell system this information page will use contact view.
Step 3
Get into catalog/controller/information/contact.php, add following code after
public function index() {
$this->language->load('information/contact');
paste this
$this->load->model('catalog/information');
$information_info = $this->model_catalog_information->getInformation(17);
$this->data['heading_title'] = $information_info['title'];
$this->data['description'] = html_entity_decode($information_info['description'], ENT_QUOTES, 'UTF-8');
17 is the the information page ID. You can find it when you hover “edit” in information list page.
Step 4
Get into catalog/view/theme/your_theme/template/information/contact.php, add following code to where you want to display.
