Lightbox image

Everything related to Hesk - helpdesk software

Moderator: mkoch227

Post Reply
mbory
Posts: 24
Joined: Tue Jan 09, 2024 4:11 pm

Lightbox image

Post by mbory »

Hi, has anyone added a lightbox system for images yet? And could help me to configure one please?

Thank you :)
mbory
Posts: 24
Joined: Tue Jan 09, 2024 4:11 pm

Re: Lightbox image

Post by mbory »

I've tried using Lightbox2.js, but the problem is that TinyMCE automatically deletes all attributes added to it, even if I add in raw in the editor <a href="imgLink" data-lightbox="image">, it will delete the data-lightbox

https://lokeshdhakar.com/projects/lightbox2/
Klemen
Site Admin
Posts: 10135
Joined: Fri Feb 11, 2005 4:04 pm

Re: Lightbox image

Post by Klemen »

I never added this, but it's most likely removed by the HTMLPurifier library.

You will need to edit /inc/htmlpurifier/HeskHTMLPurifier.php

Just ABOVE this code

Code: Select all

$purifier = new HTMLPurifier($config);
Add something like

Code: Select all

$def = $config->getHTMLDefinition(true);
$def->addAttribute('a', 'data-lightbox', 'Text');
Save and test.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
mbory
Posts: 24
Joined: Tue Jan 09, 2024 4:11 pm

Re: Lightbox image

Post by mbory »

Oh thank you ! it no longer removes the attribute, I'm going to test the lightbox library :)
mbory
Posts: 24
Joined: Tue Jan 09, 2024 4:11 pm

Re: Lightbox image

Post by mbory »

Hmm, so I use https://lokeshdhakar.com/projects/lightbox2/
I use CDN link here : https://cdnjs.com/libraries/lightbox2

But it dosen't work, my image open in a new tab
Klemen
Site Admin
Posts: 10135
Joined: Fri Feb 11, 2005 4:04 pm

Re: Lightbox image

Post by Klemen »

Can you link to a test KB article?
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Post Reply