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