
Originally Posted by
docfx
Whilst sorting by manufacturer, QU actually appears to be sorting the data by manufacturer_id, but displaying manufacturer_name.
In recent versions the above can be fixed by changing:
Code:
if(QUICKUPDATES_MODIFY_MANUFACTURER == 'true')
$output .= zen_quickupdates_table_head('m.manufacturers_id', TABLE_HEADING_MANUFACTURERS);
To:
Code:
if(QUICKUPDATES_MODIFY_MANUFACTURER == 'true')
$output .= zen_quickupdates_table_head('m.manufacturers_name', TABLE_HEADING_MANUFACTURERS);
While checking this I noticed the categories sorting has the same "problem". In addition to that the categories/master_categories switch does not alter the sort order (an issue I introduced myself). Both these sorting issues are less easy to fix than the manufacturer sorting and I will leave it as it is. Maybe only changing the text, so it says it sorts by id i.s.o. by name, is the best option ftb.
@Louis: thanks for letting me now about the purchase price enable fix :-) I think I removed it because I wanted to move that setting from one file to another or to the sql, but got interrupted and forgot to re-add it.
Bookmarks