voxdizainas Posted January 29, 2009 Share Posted January 29, 2009 After create category? How to change position ...? A?Or I something lost? Link to comment Share on other sites More sharing options...
cerberus22 Posted January 29, 2009 Share Posted January 29, 2009 Hi Voxdizainas,This may help you.http://www.prestashop.com/wiki/Sorting_categorieshttp://www.prestashop.com/forums/viewthread/731/feature_requests/manual_sort_order_for_categories_and_productshttp://www.prestashop.com/forums/viewthread/6355/general_discussion/how_to_specify_the_orderid_of_home_subcategories Link to comment Share on other sites More sharing options...
Reiner Posted March 4, 2009 Share Posted March 4, 2009 I solved this problem by changing the code in modul blockcategories.in mine it´s row 107:ORDER BY cl.id_category '); sorting by id (I have no subcategories)ORDER BY cl.name ASC '); sorting by name if you first want to see categories with subcategories and afterwards thd name, simply add level_depth as follows:ORDER BY level_depth, cl.name ASC '); Origin: ORDER BY level_depth, cl.name ASC ');Good Luck Link to comment Share on other sites More sharing options...
joseff Posted August 19, 2009 Share Posted August 19, 2009 I have just posted my code contribution in this thread. Hope it helps.http://www.prestashop.com/forums/viewthread/25678 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now