In the footer for open cart v1.5.1 there is a section called information. It has about us etc.
I want to put those links in my header.tpl file of my custom theme. So making opencart a cms for pages as well as the store.
If I copy this code from footer.tpl
Code: Select all
<ul>
<?php foreach ($informations as $information) { ?>
<li><a href="<?php echo $information['href']; ?>"><?php echo $information['title']; ?></a></li>
<?php } ?>
</ul>
Thank you