• 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

    • ⚠️ 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] Twitter Cards support

laaabaseball

Chevereto Member
https://dev.twitter.com/docs/cards

I originally suggested it and it was put into 2.5, but I don't see it in 3.0, so I created a hacky way to put it into 3, hope to help if anyone needs.

In your theme folder,

add to image.php just below <?php G\Render\include_theme_header(); ?>

Code:
<meta name="twitter:card" content="photo">
<meta name="twitter:site" content="@chevereto">
<meta name="twitter:creator" content="@chevereto">
<meta name="twitter:title" content=" <?php echo get_image()["description"]; ?>- chevereto.com">
<meta name="twitter:image" content=" <?php echo get_image()["url"]; ?>">
<meta name="twitter:image:width" content=" <?php echo get_image()["width"]; ?>">
<meta name="twitter:image:height" content=" <?php echo get_image()["height"]; ?>">

Obviously replace the Twitter account and website name with your own

Edit: should state that in a non-hacky verson of doing this, this would be placed in the header.php file, but Twitter scans the whole page so this works.
 
This is not a hacky version. Is the way of doing it by modify the theme.
 
Actually I've been working in this already. For the next version this will come right out of the box.

Album:
Gallery_card.PNG
Note how even the user's twitter account is filled in.

Image:
Card_photo.PNG
 
Hola Rodolfo, with which version you will release this feature?

btw you are great with your work!

best regards from germany
CMedia_de
 
Hola Rodolfo, with which version you will release this feature?

btw you are great with your work!

best regards from germany
CMedia_de

Most likely to 3.6 but if some bug or something comes by could be in 3.5.X. The functionality is already complete so is just a matter of time.
 
Back
Top