Page Links
In your page you would need to find where you would like the links assigned to appear. For using a table to display your products you would setup the ShopSite tags similar to:
[-- IF PAGE.NumLinks "0" --]
[-- ELSE --]
<table cellpadding="5" cellspacing="0" border="0" width="100%">
[-- LOOP LINKS --]
<tr>
<td class="link">[-- LINK Sidebar --]</td>
</tr>
[-- END_LOOP LINKS --]
</table>
[-- END_IF --]
If you would like to hard code the number of columns that links appear in, you can enter the number of columns that you would like in the LOOP LINKS tag. Make sure you remove the <tr></re> tags from the loop section.
[-- IF PAGE.NumLinks "0" --]
[-- ELSE --]
<table cellpadding="5" cellspacing="0" border="0" width="100%">
[-- LOOP LINKS 3 --]
<td class="link">[-- LINK Sidebar --]</td>
[-- END_LOOP LINKS --]
</table>
[-- END_IF --]
Next: Page Loop Products