• 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

How To Disable Password for pages?

Hammer

Chevereto Member
hi,
Today i installed chevereto and enabled the password for private mode
but this password needed for all page's too
how to disable password for page's?
 
Open includes/classes/class.handler.php and replace this:

PHP:
if($this->template=='index' || $this->template=='pages/'.$this->base_request) {

With this:
PHP:
if($this->template=='index') {
 
Back
Top