• 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

Replace "About" tab with image title

pxljar

Chevereto Member
Is it possible to display the image title instead of the "about" tab label on the image page? I'd like to keep the about section (description, exif, etc.) but change the label to display the image title.

I'm guessing the php code for the title would go into app/routes/route.image.php ?

I just don't know how I would go about implementing it.

As always, all suggestions are appreciated :)
 
app/routes/route.image.php

Change this:
PHP:
        $tabs = [
            [
                "label"        => _s('About'),
                "id"        => "tab-about",
                "current"    => true,
            ]
        ];

To this:
PHP:
        $tabs = [
            [
                "label"        => $image_safe_html['title'],
                "id"        => "tab-about",
                "current"    => true,
            ]
        ];
 
Back
Top