• 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.
  • Chevereto Support CLST

    Support response

    Support checklist

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