just wondering how i can add the merchant name to the product name on the search results
cheers
Hi Jonny,
In html/searchresults.php, simply replace each instance of:
<?php print $product["name"]; ?>
(on lines 16 and 18) with...
<?php print $product["name"]." from ".$product["merchant"]; ?>
Bear with me regarding your previous post about clicking the price, i'll look into that for you...
Hope this helps!
Cheers, David.
many thanks David
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hi Jonny,
In html/searchresults.php, simply replace each instance of:
<?php print $product["name"]; ?>
(on lines 16 and 18) with...
<?php print $product["name"]." from ".$product["merchant"]; ?>
Bear with me regarding your previous post about clicking the price, i'll look into that for you...
Hope this helps!
Cheers,
David.