• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

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