Sort thumbnails on Website #1335
-
I updated my WEB site today and want to change the sort order of the thumbnails from preset day to oldest day. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@Dentonknifeworks Brad, I assume you are referring to the Allsky Website with the star overlay, and not the WebUI? Eric |
Beta Was this translation helpful? Give feedback.
@Dentonknifeworks Brad, I assume you are referring to the Allsky Website with the star overlay, and not the WebUI?
You are correct, the sorting is done in
functions.php
by theasort($files)
function. Change it toarsort($files)
(I think the "r" is for "reverse").One of my to-do items is to allow users to specify the sort order via a configuration variable, rather than having to edit the source code. Ditto for the WebUI.
Eric