After reading through Gabes Block tutorials and 2 days of pulling my hair out its time to turn to help.
I am using the following code adapted from Tutorial 5
GiftSection is a custom variable set as a list of choices. I have several products with this set as 'Jewellery' to make them show in the list.
This works fine except I get an empty 'entry' at the beginining and end.
(This is taken from viewing the source in IE)
Any idea what I am doing wrong?
The site is not published but I could publish it if it helps
I am using the following code adapted from Tutorial 5
Code:
<div> <actinic:block type="EntireSectionList" > <actinic:block type="ProductList" > <actinic:block if="%3cactinic%3avariable%20name%3d%22GiftSection%22%20%2f%3e%20%3d%3d%20%22Jewellery%22" > <img src="<actinic:variable name="ProductImageFileName" />" width="120" alt="<actinic:variable name="ProductName" />" border="0" /> </actinic:block> </actinic:block> </actinic:block> </div>
This works fine except I get an empty 'entry' at the beginining and end.
(This is taken from viewing the source in IE)
Code:
<img src="" width="120" alt="" border="0" /> <img src="SHE0027L.jpg" width="120" alt="Silver Earrings 1" border="0" /> <img src="SHE0027L.jpg" width="120" alt="Silver Earrings 2" border="0" /> <img src="SHE0027L.jpg" width="120" alt="Silver Earrings 3" border="0" /> <img src="SHP0002L.JPG" width="120" alt="Silver Pendant 2" border="0" /> <img src="" width="120" alt="" border="0" />
The site is not published but I could publish it if it helps
Comment