You are here:  » Shop Logo


Shop Logo

Submitted by MarcoCH on Thu, 2019-02-21 17:54 in

Hello

It sounds simple but I can not get it. I would like to place the logo of the shop at the Shop Link. What is the correct placeholder.

"Best Price: £1678.99 from (PRC Direct)" here Shop Logo

Thanks and Greetings
Marco

Submitted by support on Fri, 2019-02-22 10:24

Hi Marco,

Sure - edit html/product.php and look for the following code at line 12:

  $html = "<a href='".tapestry_buyURL($p)."'>".$p["merchant"]."</a>";

...and REPLACE with:

  $html = "<a href='".tapestry_buyURL($p)."'>".$p["merchant"]." <img src='".$config_baseHREF."logos/".str_replace(" ","%20",$p["merchant"]).$config_logoExtension."' /></a>";

Cheers,
David.
--
PriceTapestry.com

Submitted by MarcoCH on Fri, 2019-02-22 14:34

Perfect ... thx!