• 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 to make Image description Links clickable

so you want a link in the description? if so try using the plain HTML coding method as following,
if you want a text to be clickable then do:
HTML:
<a href="link goes here"/>text goes here that becomes clickable</a>

other wise if you want link to be clickable then do:
HTML:
<a href="link goes here"/>link goes here too</a>

Also for image i would guess file in app\themes\Peafowl\views\image.php try copying whole views content into override/views that way you will keep original version where it is and it will automaticly listen to copy in override path.
 
These things doesn't work. HTML is disabled somewhere in code.

so you want a link in the description? if so try using the plain HTML coding method as following,
if you want a text to be clickable then do:
HTML:
<a href="link goes here"/>text goes here that becomes clickable</a>

other wise if you want link to be clickable then do:
HTML:
<a href="link goes here"/>link goes here too</a>

Also for image i would guess file in app\themes\Peafowl\views\image.php try coping whole views content into override/views that way you will keep original version where it is and it will automaticly listen to copy in override path.
 
These things doesn't work. HTML is disabled somewhere in code.
that's probably because it uses this code
PHP:
<?php } ?> alt="<?php echo get_image_safe_html()['description']; ?>

to fetch description if i'm now at right track, so then you may need to apply code into database itself under description table area and it should work hopefully then.
 
Back
Top