• 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

How do I hide the title?

anyimg

Chevereto Member
Hello,

Most images contain random titles
I want to hide titles from pictures, can you tell me how to do this?
I can edit php files but need to guide me to the required file.
 
Titles are not that random because is generated from the filename. Anyway, check class.image.php to get rid of that.
 
app/lib/classes/class.image.php

Replace this:
PHP:
if(!array_key_exists('title', $params)) {

With this:
PHP:
if(1>2 && !array_key_exists('title', $params)) {
 
Nothing changed.
I think I will make changes in the theme to hide titles.
Thanks.
In case you didn't noticed, this only affects new uploads.

By the way, you can't detect if a title is random or not so try to don't hide good titles just because a bunch of bad titles.
 
Back
Top