Manufacturers drop-down list

I have 135 Manufacturers i inputed each one in alpha order but the drop-down listbox is displaying the company names out of alpha order. is there anyway to fix this?

Try and give then a position (POS) when you add each one.

[quote name=‘imn’]I have 135 Manufacturers i inputed each one in alpha order but the drop-down listbox is displaying the company names out of alpha order. is there anyway to fix this?[/QUOTE]



To display Manufacturers alphabetically do this



1)Open the “/addons/manufacturers/func.php” file;

2)Replace the following part of code:



ORDER BY $db_tables[manufacturers].position $_limit");




with



ORDER BY $db_tables[manufacturer_descriptions].manufacturer $_limit");




Hope this helps