I'm very new to Shopsite and their template system. It seems stable but I'm used to Perl and PHP so I'm frustrated with the perceived limitations. My customer's host doesn't have any ssh or terminal access and the permissions don't allow any non-shopsite textfiles to be added to the server.
My quandry...
I have a page with 3 products; Touring, Sportster, and Softail. These products are place holders for their associated sub-products; each sub-product has an image and description. I'm trying to make a text navigation menu of products(not sub-products) using anchors. Think of the products as "sections". I'm adding code to the page template to loop through the products and grap the name to create the menu at the top of the page. I also have code in the product template to add the anchor. But it ain't working! I have searched and searched this forum but didn't find the answer.
This is what I've got(page template):
- Code: Select all
[-- LOOP PRODUCTS PAGE.columns --]
<a href="#[-- PRODUCT.RecordNumber --]">[-- PRODUCT.Name --] </a>
[-- END_LOOP PRODUCTS --]
Any ideas would be appreciated.