Hi,
I have related products working to some degree but would like some help getting them to do exactly what i need them to do.
This is what i have so far: http://gfc.alphaclient.co.uk/acatalo...ner-chair.html
1.) Currently the related products link to product categories rather than the individual products. I want to change it so that when a user clicks on a related product it goes to the individual product page. How do i achieve this?
2.) I would like them to display the price underneath the product description. ( I had this piece of code but it got stripped out when i was playing around with the code...)
3.) I currently have 5 related products as a maximum which fits my design. However if i have less than 5 related products the design seems to mess up, as seen here: http://gfc.alphaclient.co.uk/acatalo...nch-120cm.html I would like to fix this so i can display say 2 products and align them to the left.
Any help with these issues would be greatly appriciated.
ps heres my code:
I have related products working to some degree but would like some help getting them to do exactly what i need them to do.
This is what i have so far: http://gfc.alphaclient.co.uk/acatalo...ner-chair.html
1.) Currently the related products link to product categories rather than the individual products. I want to change it so that when a user clicks on a related product it goes to the individual product page. How do i achieve this?
2.) I would like them to display the price underneath the product description. ( I had this piece of code but it got stripped out when i was playing around with the code...)
3.) I currently have 5 related products as a maximum which fits my design. However if i have less than 5 related products the design seems to mess up, as seen here: http://gfc.alphaclient.co.uk/acatalo...nch-120cm.html I would like to fix this so i can display say 2 products and align them to the left.
Any help with these issues would be greatly appriciated.
ps heres my code:
Code:
<div class="product_image_cost">
<actinic:block if="%3cactinic%3avariable%20name%3d%22ProductImageFileName%22%20%2f%3e%20%21%3d%20%22%22">
<a href="<actinic:variable name="SearchCGIURL" />?PRODREF=<actinic:variable Name="ProductID" />&NOLOGIN=1<actinic:block if="%3cactinic%3avariable%20name%3d%22IsHostMode%22%20%2f%3e">&SHOP=<actinic:variable name="ShopID" /></actinic:block>">
<img style="border: 0;" src="<actinic:variable name="ProductThumbnailImageFileName" />" width="104" alt="<actinic:variable name="ProductName" encoding="strip"/>" />
<br /> <br />
</a>
</actinic:block>
</div>
<div>
<p class="text_product_small_info_price">
<Actinic:PRICES PROD_REF="<actinic:variable Name="ProductID" />" RETAIL_PRICE_PROMPT="<Actinic:Variable Name="ProductPriceDescription"/>">
<actinic:variable value="Marketing Price List" name="PriceListRetail" />
</Actinic:PRICES>
</p>
<p class="related-no-margin"><actinic:variable name="ProductName" /></p><br>
</div>
Comment