Контакты в Footer

  • Контакты в Footer

Как вывести контактные данные в подвале/футере магазина?

Выводим:  Телефон, Факс, E-Mail, Адрес магазина

Добавляем в файлы
catalog\controller\common\footer.php

после

$this->data['text_newsletter'] = $this->language->get('text_newsletter');

добавить

        $this->data['telephone'] = $this->config->get('config_telephone');
        $this->data['fax'] = $this->config->get('config_fax');
        $this->data['email'] = $this->config->get('config_email');
        $this->data['address'] = $this->config->get('config_address');

catalog\view\theme\default\template\common\footer.tpl

добавить в желаемое место вывода

    <?php echo $telephone; ?> <?php echo $fax; ?><br />
    <?php echo $email; ?><br />
    <?php echo $address; ?>