You are here:  » How to add retailer name to product name

Support Forum



How to add retailer name to product name

Submitted by jonny5 on Sat, 2010-01-02 16:44 in

just wondering how i can add the merchant name to the product name on the search results

cheers

Submitted by support on Sat, 2010-01-02 16:57

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.

Submitted by jonny5 on Sat, 2010-01-02 17:07

many thanks David