Page Loop Products

In your page you would need to find where you would like the products assigned to appear. If you are using HTML for your pages you will most likely want to have your products displayed within a table so that you can use the columns options within ShopSite. For using a table to display your products you would setup the ShopSite tags similar to:

    [-- IF PAGE.NumProducts "0" --]
    [-- ELSE --]
    <table cellpadding="5" cellspacing="0" border="0" width="100%">
      [-- LOOP PRODUCTS Page.Columns --]
        <td class="product">[-- PRODUCT --]</td>
      [-- END_LOOP PRODUCTS --]
    </table>
    [-- END_IF --]

If you would like to force a specific product template to be used, you can hard code the name of the product template in the PRODUCT tag.

    [-- PRODUCT template-name --] (no spaces in the product name)

    [-- PRODUCT "template name" --] (spaces in product name)

Start: Product Template