You are here:  » link on featured product not working after mod

Support Forum



link on featured product not working after mod

Submitted by jonny5 on Sun, 2008-06-01 14:19 in

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>"
?>

Submitted by support on Sun, 2008-06-01 15:47

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.

Submitted by jonny5 on Sun, 2008-06-01 16:22

spot on , cheers