hi,

thanks for a reply. here is a documentiaont of what I did:

1) located /includes/modules/sideboxes/information.php file
my goal is to delete more links

2) looked at how the default links were constructed.

3) added the following line of code
if (DEFINE_SHIPPINGINFO_STATUS <= 1) {
$information[] = '<a href="' . zen_href_link(FILENAME_FAQ) . '">' . BOX_INFORMATION_FAQ . '</a>';
}


4) I saw the FAQ link on the information sidebox after that.

5) The problem that I am having is that zen_href_link(FILENAME_FAQ) points to nowhere at this time and I am not sure what should I edit ot have it point to somewhere.

for example:

if (DEFINE_SHIPPINGINFO_STATUS <= 1) {
$information[] = '<a href="' . zen_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a>';
}

points to some sort of shipping file which can be edited through the page editor.

Does anybody know wherezen .href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING points to?

Thanks