• 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

    • ⚠️ 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 :p
 
Yes, it will work but you will need to recreate an user/images sub route.
 
Back
Top