Page 1 of 1

Move Contact Us link to the Information column (SOLVED)

Posted: Sat May 05, 2012 7:56 am
by seanie86
Hi,

I couldn't find this mentioned on the forums so I thought I would ask.

I am looking at moving the "contact us" link in the footer of the opencart default template from "customer service" column to the "information" column.

Can this be done? If so how?

Thanks,

Sean

Re: Move Contact Us link to the Information column in footer

Posted: Sat May 05, 2012 8:28 am
by petrus
Try edit file footer.tpl

Re: Move Contact Us link to the Information column in footer

Posted: Sat May 05, 2012 8:48 am
by seanie86
Is that the only file I will need to change in order to add the contact us part? are the other files I need to edit?

Re: Move Contact Us link to the Information column in footer

Posted: Sat May 05, 2012 8:56 am
by petrus
Yes only 1 file. Just move code

Code: Select all

<li><a href="<?php echo $contact; ?>"><?php echo $text_contact; ?></a></li>
Code should like this:

Code: Select all

<ul>
      <?php foreach ($informations as $information) { ?>
      <li><a href="<?php echo $information['href']; ?>"><?php echo $information['title']; ?></a></li>
      <?php } ?>
<li><a href="<?php echo $contact; ?>"><?php echo $text_contact; ?></a></li>
    </ul>

Re: Move Contact Us link to the Information column in footer

Posted: Sun May 06, 2012 4:13 am
by seanie86
Hi Thanks,

That worked perfectly!