• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

Set default album listing to AZ

lovedigit

👽 Chevereto Freak
Hi,

I was wondering if someone can point me to some resources that I can use to make default view of album to AZ, instead of most recent.
I would like to keep default view of user account to "most recent", but albums to AZ.

Really appreciate the help.

Edit: Forgot to mention. I am looking for resources/tips for v4.
 
That's controlled at app/legacy/routes/album.php, the $listing and $tabs variables.
 
Code:
$listing->setSortType($getParams['sort'][0]); // date | size | views
$listing->setSortOrder($getParams['sort'][1]); // asc | desc

The comment says only possible values in array are date, size and views. How do I sort it by name?
 
Back
Top