You are here:  » show what logos are missing

Support Forum



show what logos are missing

Submitted by jonny5 on Sat, 2011-04-30 13:42 in

Is it possible in the admin section for the merchant logos to show what logos are missing and need adding??

cheers

Submitted by support on Sun, 2011-05-01 09:51

Hello Jonny,

Sure! In admin/merchant_logos.php first look for the following code at line 58:

    print "<th align='left'>".$row["merchant"]."</th>";

...and REPLACE that with:

    print "<th align='left'>".$row["merchant"]."</th>";
    $haveLogo[$row["merchant"]] = 1;

Finally, look for the following code at line 74:

  print "<h3>Upload Merchant Logo</h3>";

...and REPLACE with:

  print "<h3>Missing Logos</h3>";
  foreach($rows as $row)
  {
    if (!$haveLogo[$row["merchant"]])
    {
      print "<p>".$row["merchant"]."</p>";
    }
  }
  print "<h3>Upload Merchant Logo</h3>";

Cheers,
David.
--
PriceTapestry.com