• 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

Route Homepage to Albums

TheLegend

Chevereto Member
Hello,
I have a website which I setup in personal mode,
the Personal mode routing is set to /
the homepage style is set to Landing Page

I need to route the domain.com to show the albums istead of the uploaded images.
How do I do that?

I hope someone will help, thank you.
 
There isn't a route to albums option, the only way to achieve it will be doing extensive code changes.
 
Thanks for the response.
I tought could be done somewhere where if the personal profile is turned on, it shows albums istead of images. Maybe a workaround?
Thanks.
 
actually it was very easy, thanks Rodolfo.

I changed in app/routes/route.user.php - line 75 from:
Code:
$user_cond = array('user_images' => true, 'user_albums' => false, 'user_search' => false);
to
Code:
$user_cond = array('user_images' => false, 'user_albums' => true, 'user_search' => false);

and it worked 😛
 
Yes, it will work but you will need to recreate an user/images sub route.
 
Back
Top