I'm having an issue with the Loop Product tag, at least that's what I think. I created a custom page template off of the "tab_page_template". I have specified that there should be 5 products displayed per page. The products should be displayed three across. So on the web page you should see:
Product1 | Product2 | Product3
Product4 | Product5
I have currently assigned 10 products to the page. When I view this web page the first page is correct and looks like the following:
Product1 | Product2 | Product3
Product4 | Product5
However, when I go to the second page it looks like the following:
Product6
Product7 | Product8 | Product9
Product10
When I look at the html code for the second page it appears the <tr></tr> tags are completely missing for the first row. The template code for the Products table is as follows:
<!--*************************-->
<!-- Begin Table of Products -->
<!--*************************-->
<table width="[-- PAGE.PageWidth --]" align="center" border="[-- VAR.border --]" cellpadding="3">
[-- LOOP PRODUCTS 3 --]
<td valign="top" align="[-- VAR.align --]"> [-- PRODUCT --]</td>
[-- END_LOOP PRODUCTS --]
</table>
<!-- End Table of Products -->
[-- END_IF --]
[-- IF PAGE.Text2 --]
<table width="[-- PAGE.PageWidth --]" align="center">
<tr>
<td>[-- PAGE.Text2 --]</td>
</tr>
</table>
[-- END_IF --]
--------------------------
Any help would be appreciated. Thanks in advance.