You seem to have some mods installed. For those mods, I can't give an answer as I don't know what they are and may not be familiar with them.
For the default Zen Cart pages, here's one way of doing things.
You can point to a particular php file by overriding the specific template file that affects the area containing the links you want to change. You then create the link by using the zen_href_link() function. The file name that the zen_href_link() function uses can be looked up in the /includes/filenames.php file.
For example, the following code will point to the Shipping Information page:
PHP Code:
<a href="<?php echo zen_href_link(FILENAME_SHIPPING); ?>">The Shipping Information page</a>