
Originally Posted by
Justrimless
Is it possible to sort the attribute options alphabetically?
Thanks in advance.
Yes, use the same query, and find
PHP Code:
ORDER BY po.products_options_name, pov.products_options_values_sort_order";
replce this with
PHP Code:
ORDER BY po.products_options_name, pov.products_options_values_name";
Bookmarks