Home Users How to display users by ID in increasing order...
How to display users by ID in increasing order on the 'Users' page
- Open the search_users.php file located in the include/common directory of your CS-Cart installation.
- Find and replace the following part of code there:
if (empty($sort_order) || empty($directions[$sort_order])) { $sort_order = 'asc'; } if (empty($sort_by) || empty($sortings[$sort_by])) { $sort_by = 'name'; }
with this one:
if (empty($sort_order) || empty($directions[$sort_order])) { $sort_order = 'desc'; } if (empty($sort_by) || empty($sortings[$sort_by])) { $sort_by = 'date'; } - Save the file.
