• 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

Increase the number of links shown on the embed tabs of an album

jahrinc

Chevereto Member
Basically what the title says! It only shows up to 1,000 links of the album - would like it to show more or the full album!
 
Last edited:
Forgot to post on how I achieved what I wanted.

Edit /app/routes/route.json.php and change the number "2000" to the number of images you'd like.

PHP:
                if ($doing == 'get-album-contents') {
                    $album_fetch = min(2000, $album['image_count']);
                    $list_params = [
                        'items_per_page' => $album_fetch,
                        'page' => 0,
                        'limit' => $album_fetch,
                        'offset' => 0,
                        'sort' => ['date', 'desc'],
                    ];
                }

Though, be warned that it slows down your browser quite a lot if you increase it too much.
 
Back
Top