Hi, I am trying to move the Information's contents - shipping & returns, conditions of use, contact us etc to the footer.

I know that i have to include something like this:

<?php if (DEFINE_CONTACT_US_STATUS <= 1) { ?>
<li><?php echo '<a href="' . zen_href_link(FILENAME_CONTACT_US, '', 'SSL') . '">' . BOX_INFORMATION_CONTACT . '</a>'; ?></li>
<?php } ?>

into the tpl_fopter.php

This is an example I found in this forum.

However, for the shipping & returns etc, I dont know what to change for the filename.

I am guessing that shipping & returns should input this:

<?php if (DEFINE_SHIPPING_INFO_STATUS <= 1) { ?>
<li><?php echo '<a href="' . zen_href_link(FILENAME_SHIPPINGINFO, '', 'SSL') . '">' . BOX_INFORMATION_SHIPPING. '</a>'; ?></li>
<?php } ?>

But it doesnt work. Where can I find the correct filename for those pages in the information sidebox?

Thanks so much.