Quote:
Originally Posted by mrbiggles
Hello
I think if you go to MODULE SETTINGS/manufacturer list limit in the admin area you can increase the limit from 10 to whatever number you want.
Regards Adam
|
Nice to finally find this answer!!!
_now setting it to a really high number_
here is my version of the Drop Down Menu for Manufacturers:
Code:
{* $Id: menu_manufacturers.tpl,v 1.4 2004/06/22 05:38:52 max Exp $ *}
{if $manufacturers_menu ne ''}
{capture name=menu}
<FORM NAME="formManufacturer">
<SELECT NAME="listManufacturer" onchange="window.location=this.options[selectedIndex].value">
<OPTION VALUE="">- select -</OPTION>
{section name=mid loop=$manufacturers_menu}
<OPTION VALUE="manufacturers.php?manufacturerid={$manufacturers_menu[mid].manufacturerid}"><font class="VertMenuItems">{$manufacturers_menu[mid].manufacturer}</font></OPTION>
{/section}
</SELECT>
</FORM>
{if $show_other_manufacturers}
{$lng.lbl_other_manufacturers}
{/if}
{/capture}
{include file="menu.tpl" dingbats="dingbats_categorie.gif" menu_title=$lng.lbl_manufacturers menu_content=$smarty.capture.menu}
{/if}
Under v4.0.12... goto: Web Admin -> Modules -> General Settings -> Modules Options... then edit value for "Manufacturers list limit" to something high obsurd like 250.
Doing so will allow a complete list of Manufacturers to be shown.
If you go over this "Manufacturer List Limit" value... then the "Other Manufacturers" link will show up... just up the "Manufacturers list limit" value higher again!
Marko