• 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 to change meta og: tags.

Edit app/routes/route.category.php, near the bottom of the file where it reads:

PHP:
        $meta_description = $category['description'] ? $category['description'] : NULL;
 
Sorry, but I don't understand this one. In route.category.php I see this content, but what changes should I make? And what about "og:image"?
 
Og tags gets filled based on what you put in those meta tags, you either edit the route or the theme header.
 
similar problem...

for image I found following line:
'image' => get_image()['url']

and now trying to add the same line for album... something like "cover_image_url":
'image' => get_album()['cover_image_url']

or something else... help, please.
 
Edit theme header.php

Place string
$list_output = function_exists('get_list') ? get_list()->output_assoc : NULL;
higher than
$open_graph = [....

Then change:
$open_graph = [
....
'title' => function_exists('get_meta_description') ? get_meta_description() : CHV\getSetting('website_doctitle'),
'image' => $list_output[0]['display_url'],
.....
];
 
Back
Top