• 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.

How to have custom meta title, description in homepage

Use conditionals like is_home() in header.php (theme file).
 
Sorry, that wasn't the right instruction. Revert any changes mades so far and open includes/classes/class.handler.php and find this:

PHP:
            case '': case 'index.php':
                @session_start();
                $_SESSION['last_upload_request'] = time();
                $this->template = 'index';
            break;

And replace it with this:
PHP:
            case '': case 'index.php':
                @session_start();
                $_SESSION['last_upload_request'] = time();
                $this->template = 'index';
                self::$doctitle = 'My doctitle';
            break;
 
By the way, I know that this methods are kind of ugly but since Chevereto doesn't include image descriptions and things like that is useless to have custom desriptions or titles. In Chevereto V3 this will be way different because it will be way more SEO friendly and doctitles could be defined for each page.

Hope that you can understand that curren V2.X releases are only focused to fix bugs and things like that. All the new functions and improvements are being pushed to the V3.X releases. V3.0 has no release date so far and you can check the progress here: http://chevereto.com/community/threads/chevereto-3-feature-set-final.3288/

Cheers.
 
Back
Top