I am new to Shopsite and am building custom template (I hope) to support the following layout.
I want to display one product on a page, listing the product group options on the left - so when you click a product from the group, the product details (pic, price, desc., etc) change.
I built a product template and have the basic product display down fine, but the nav/select list is killing me.
I have a product group - top level. I created the four product sub-groups (created products, then selected them as the sub group). The actual product is actually a sub to that... but I can't even get past this first layer of the structure.
Here's the code I currently have (like the 500th iteration) for the product template. a table of three columns - the left column I want the "list"...
Can some one please provide me with some direction? Thanks.
[-- DEFINE SUBPRODUCT --]
[-- PRODUCT.Name --]
[-- END_DEFINE SUBPRODUCT --]
[-- DEFINE PRODUCT --]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<table width="649">
<tr>
<td align="left" width="169">
<TABLE>
<TR><TD>
[-- LOOP SUBPRODUCTS --]
[-- SUBPRODUCTS --]
[-- END_LOOP SUBPRODUCTS --]
</TD></TR></TABLE>
</td>
<td align="center" width="244" valign="top">
[-- PRODUCT.Graphic --]</td>
<td width="218" align="center" valign="top"><strong> [-- PRODUCT.Name --] </strong><br>
[-- PRODUCT.SKU --] <br /><br />
[-- PRODUCT.Price --]<br><br />
[-- PRODUCT.ProductDescription --]
</td>
</tr>
</table>
</body>
</html>
[-- END_DEFINE PRODUCT --]