
Originally Posted by
sumri
hi...
thanks for the beautiful GTI templates.
I've applied the red one to my webstore.
I would like to make a little adjustment to the contents and need your help to make it happen. Pls refer attached image for my case.
I want to add new link right beside the Advanced Search in the picture. I've go through every files in your templates. but i can't find where to modified. FYI - i'm not quit familiar with PHP coding.
Thanks.
Regards.
Thanks, glad you like it.
The file that you are looking for is located here:
includes/templates/gti_custom_red/common/tpl_header.php
Look around lines 107 to 115
Code:
<div id="altLinks">
<a href="<?php echo zen_href_link(FILENAME_SPECIALS, '', 'NONSSL'); ?>"><?php echo HEADER_SUB_SPECIALS;?></a> |
<a href="<?php echo zen_href_link(FILENAME_FEATURED_PRODUCTS, '', 'NONSSL'); ?>"><?php echo HEADER_SUB_FEATURED;?></a> |
<a href="<?php echo zen_href_link(FILENAME_PRODUCTS_ALL, '', 'NONSSL'); ?>"><?php echo HEADER_SUB_ALLPRODUCTS;?></a> |
<a href="<?php echo zen_href_link(FILENAME_ADVANCED_SEARCH, '', 'NONSSL'); ?>"><?php echo HEADER_SUB_ADVANCED_SEARCH;?></a>
<br /><br />
<?php echo HEADER_SUB_SEARCH; ?>
<?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?>
ADD YOUR LINK HERE
<br class="clearBoth" />
Add your link as shown above before the <br class="clearboth">