Quote:
Originally Posted by BCSE
Here's a quick mod to show random manufacturers in the Manufacturer menu box. Great for stores that have lots of manufacturers.
Open up modules/Manufacturers/customer_manufacturers.php
Find this line:
Code:
$manufacturers_menu = func_query("SELECT * FROM $sql_tbl[manufacturers] USE INDEX (avail) WHERE avail = 'Y' ORDER BY orderby LIMIT ".($config['Modules']['manufacturers_limit']));
Change it to this:
Code:
$manufacturers_menu = func_query("SELECT * FROM $sql_tbl[manufacturers] USE INDEX (avail) WHERE avail = 'Y' ORDER BY RAND() LIMIT ".($config['Modules']['manufacturers_limit'])); # BCSE changed
Carrie
|
In 4.6.1 How to display only category specific manufacturer in the category page? In category page only display that manufacturer name which is linked with that category.