You are here:  » Logo vs Name


Logo vs Name

Submitted by MarcoCH on Thu, 2018-11-29 21:10 in

Hi David

How can I insert the Marchent logo instead of MarchentName in "product.php"? I can not make it.

Thanks and Greetings
Marco

<?php print $product_bestPriceText?>:
      <?php print tapestry_price($product_main["price"]); ?> <?php print translate("from"); ?>
      <?php print $product_bestPriceMerchants?>

Submitted by support on Fri, 2018-11-30 09:01

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:

      if (file_exists("logos/".$p["merchant"].$config_logoExtension))
      {
        $html = "<a href='".tapestry_buyURL($p)."'><img src='".$config_baseHREF."logos/".$p["merchant"].$config_logoExtension."' /></a>";
      }
      else
      {
        $html = "<a href='".tapestry_buyURL($p)."'>".$p["merchant"]."</a>";
      }

Cheers,
David.
--
PriceTapestry.com