This is a discussion on attribute sort within the osCMax v2 Customization/Mods forums, part of the osCMax v2.0 Forums category; I wanted a way to display my attributes starting with the lowest price first (or zero) to the highest price ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| I wanted a way to display my attributes starting with the lowest price first (or zero) to the highest price last. After trying to find any post to this that was current and that worked, I looked on my own. I think I found the way to do this in the classes directory in the pads_base.php file. around line 312, I placed the order statement that was referred to in some earlier documentation, so that it looks like this (new addition in bold): $products_options_query = tep_db_query("select pov.products_options_values_id, pov.products_options_values_name, pa.options_values_price, pa.price_prefix from " . TABLE_PRODUCTS_ATTRIBUTES . " pa, " . TABLE_PRODUCTS_OPTIONS_VALUES . " pov where pa.products_id = '" . (int)$this->products_id . "' and pa.options_id = '" . (int)$products_options_name['products_options_id'] . "' and pa.options_values_id = pov.products_options_values_id and pov.language_id = '" . (int)$languages_id . "'" . " order by pa.options_values_price, pa.products_attributes_id" ); If anyone has a better way to do this, I'd like to hear from them, or if someone sees a red flag doing this, please point it out. Thanks |
|
#2
| |||
| |||
| I'm trying to sort my attributes into alphabetical order. Will the above work if the code was changed slightly? If so, to what? Thanks |
|
#3
| |||
| |||
| That fixed my problem thanks for the post. The osCMAX documentation should be updated to reflect this. |
|
#4
| ||||
| ||||
| I used the attribute sort mod from osCommerce myself. Where instructions call to change the linkes in /catalog/product_info.php, make the change in pads_base.php. Continue with the other changes (be sure to manually change /admin/product_attributes.php!) and there is now the option to sort your attributes on the Products Attributes page. unfortunately, the sort option is not available on the Attributes Manager page, which is a whole lot cleaner and easier to use. |
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Sort by price? | kenlyle | osCMax v2 Customization/Mods | 5 | 04-17-2008 05:37 PM |
| Needing: Attribute Weight, Hide Price if 0, Actual Attribute | crystina | osCMax v2 Customization/Mods | 0 | 11-22-2006 05:08 PM |
| Sort products by price | Anonymous | osCMax v1.7 Discussion | 3 | 06-02-2005 04:55 AM |
| sort order to pot!! | moreduff | osCMax v1.7 Discussion | 0 | 04-12-2005 04:57 AM |
| Sort function | goaskmom | osCMax v1.7 Discussion | 4 | 01-17-2005 04:53 PM |