image sorting by date wise in opencart 2.0.3.1 all virsion
Verry smple solution i searched the internet and found how to sort the images by the last added. its annyoing if you have a lot of products. i go, uppload the 2-3 pictures i have on a product and then i have to go and search for the filename since the image in image manager. the solution is simple:
find this line:
Code: Select all
$files = glob($directory . '/' . $filter_name . '*.{jpg,jpeg,png,gif,JPG,JPEG,PNG,GIF}', GLOB_BRACE);
Add after:
array_multisort(array_map('filemtime', $files), SORT_NUMERIC, SORT_DESC, $files);
Store
Price