Hi david , i have modded the featured file so that the name of the product is limited in characters , that works apart from the name link when clicked now just points to the homepage and not the product.
any ideas what im doing wrong with the below code??
cheers
<?php
print "<a href='".$href."'>".substr($product["name"],0,30)."</a>";
?>
Hello Jonny,
I think you need to use $product["productHREF"] in place of just $href; so try:
<?php
print "<a href='".$product["productHREF"]."'>".substr($product["name"],0,30)."</a>";
?>
Cheers,
David.