You are here:  » hide brand in home

Support Forum



hide brand in home

Submitted by miko77 on Mon, 2007-02-12 14:54 in

Dear,

I want hide the order by "brand" in the home page .

Regards
Miko

Submitted by support on Mon, 2007-02-12 15:02

Hello Miko,

The links on the home page are made by this code in index.php

  print translate("Search or browse by")." ";
  print "<a href='".($config_useRewrite?"merchant/":"merchants.php")."'>".translate("merchant")."</a>, ";
  print "<a href='".($config_useRewrite?"category/":"categories.php")."'>".translate("category")."</a> ".translate("or")." ";
  print "<a href='".($config_useRewrite?"brand/":"brands.php")."'>".translate("brand")."</a>";

To remove the brand, change this as follows;

  print translate("Search or browse by")." ";
  print "<a href='".($config_useRewrite?"merchant/":"merchants.php")."'>".translate("merchant")."</a> ".translate("or")." ";
  print "<a href='".($config_useRewrite?"category/":"categories.php")."'>".translate("category")."</a> ";

Cheers!
David.