done it..
angurio <[email protected]> 14 Aug 2003 10:09:55 -0000
| Newsgroups | gmane.comp.web.oscommerce.features |
|---|---|
| Message-ID | <aa5daed077493f96b3d45f24c5e04d9a@osCommerce-Forums> |
This message was sent from: Features
http://forums.oscommerce.com/viewtopic.php?p=213609#213609
----------------------------------------------------------------
I fixed it.. in product_info.php around line 255 the enhancement controller does this:
[code]
// WebMakers.com Added: Attributes Sort Order by Option Name
$options_order_by= ' order by popt.products_options_name';
[/code]
if you want them to be sorted by sort order, it should be changed to this..
[code]
// WebMakers.com Added: Attributes Sort Order by Option Name
$options_order_by= ' order by popt.products_options_sort_order';
[/code]
sorted! :)