by Jim » Thu Feb 12, 2009 8:52 am
You need to have multiple Loop Products sections on the page template and use some VAR to check which product in the product template to display in a particular location.
here is some really simplified code showing how to do it.
Note that in this case extra product field 1 contains the value used to determine where the product is displayed.
======This is on the page template
VAR.Group first
Loop Products
...
End_Loop Products
VAR.Group second
Loop Products
...
End_Loop Products
VAR.Group third
Loop Products
...
End_Loop Products
======This is in the product template
if product.field1 VAR.Group
output the product
else
don't do anything
end if