Dear,
I want hide the order by "brand" in the home page .
Regards Miko
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.
©2006-2025 IAAI Software | Contact Us | Privacy Policy
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.