Add image title and link title
I read through some older posts that explain that adding an image titles and link titles isn't possible. Any news on this?
Is there ANY workaround or any way to dive deeper into the html code so I can add at least image titles manually?
-
I mean there must for example be a plugin (like an image gallery or so) that I could add via the embed-element.
0 -
I found a work around using the Envista Gallery Plugin and the short code element. So at least image titles and alt tags are possible this way which are extremely important for SEO. But I haven't found a way to edit link titles. I'd very much appreciate a way to solve this issue. SEO is top priority for us and if it isn't possible to set link titles we have to consider quitting brizy which is a real bummer because apart from these SEO-shortcomings it's pretty neat!
0 -
Hi Andreas,
Thank you for contacting us. I am glad that you found a work around.
Currently, there isn’t an option to add a title or link title directly. However, you can also add it manually using JavaScript. Here’s a basic example:
<script>
document.addEventListener("DOMContentLoaded", function() {
// Add title to images
document.querySelectorAll('.brz-image').forEach(img => {
if (!img.hasAttribute('title')) {
img.setAttribute('title', 'Picture Title');
}
});
// Add title to links
document.querySelectorAll('.brz-image .brz-a').forEach(link => {
if (!link.hasAttribute('title')) {
link.setAttribute('title', 'Picture Link');
}
});
});
</script>Please note that this is a simple example—you may need to adjust it to fit your website’s structure or consult a developer for further customization. The script was added on this page using the embed element.

If you’d like to see this feature in the future, you can submit a request for it on our Ideas & Roadmap page: https://www.brizy.io/ideas-and-roadmap. This platform helps us track suggestions more effectively and prioritize feature requests based on user needs.
Best regards,
Ariel H.0
Please sign in to leave a comment.
Comments
3 comments