• 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

Login background image

alexj1982

Chevereto Member
Hello,

My site is running in private mode.

How can you allow the background image (http://demo.chevereto.com/) on the login page (http://demo.chevereto.com/login) Show. Is this feasible?

Or rather, it is this: When calling the URL the user will end up on index and are redirected when you click on upload to login. Is this possible?

I have the login.php renamed index.php, but that did not work.

Sorry for the spelling errors, can not speak English.

regards
Alex
 
In that case login page will be always shown. So you must customize login.php theme file.
 
You don't simply change login.php to index.php or vice versa. You just don't. Like I said, keep the original files and do your thing with HTML/CSS editing.
 
app/routes/route.login.php

Change this:
PHP:
G\redirect(CHV\User::getUrl(CHV\Login::getUser()));

To this:
PHP:
G\redirect(CHV\User::getUrl(CHV\Login::getUser()) . '/albums');
 
Last edited:
My mistake. Check again my past post I've edited the code.
 
In the new version there is the entry
PHP:
G\redirect(CHV\User::getUrl(CHV\Login::getUser()));
no longer. How do you implement that?
 
Back
Top