For page links: http://www.shopsite.com/templates/cookbook/page6-links.shtml
For product links: http://www.shopsite.com/templates/cookbook/page7-products.shtml
In your page template, below the [-- END_DEFINE PAGE --], add the following:
- Code: Select all
[-- DEFINE LINK_TO_PAGE --]
[-- IF PAGE.LinkGraphic --]
<a href="[-- OUTPUT_DIRECTORY_URL --]/[-- Page.FileName --]">[-- PAGE.LinkGraphic --]</a><br>
[-- IF PAGE.LinkName --]
<a href="[-- OUTPUT_DIRECTORY_URL --]/[-- Page.FileName --]">[-- PAGE.LinkName --]</a>
[-- END_IF --]
[-- ELSE --]
<a href="[-- OUTPUT_DIRECTORY_URL --]/[-- PAGE.FileName --]">[-- IF PAGE.LinkName --][-- PAGE.LinkName --][-- ELSE --][-- PAGE.Name --][-- END_IF --]</a>
[-- END_IF --]
[-- IF PAGE.LinkText --]<br>[-- PAGE.LinkText --][-- END_IF --]
[-- END_DEFINE LINK_TO_PAGE --]
Then within your page template, where you want the page links and product links to appear, add the following:
- Code: Select all
<table>[-- LOOP LINKS 2 --]
<td class="sublink">[-- LINK --]</td>
[-- END_LOOP LINKS --]</table>
[-- IF PAGE.NumProducts "0" --]
[-- ELSE --]
<div class="loop-products">
[-- LOOP PRODUCTS --]<div class="product">[-- PRODUCT --]</div>[-- END_LOOP PRODUCTS --]
</div>
[-- END_IF --]