ZenphotoCMS Forum
Filtering videos - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: Themes (https://forum.zenphoto.org/forum-5.html)
+--- Thread: Filtering videos (/thread-13481.html)



Filtering videos - Roland - 12-11-2020

Hello !
I'm using a "a href" tag on every picture so user can quickly switch to the next album image (on image.php).
But of course, when it's a video, there is a problem. If you click on play, the page is changing because of the link ^^'.
Is there any way to ad a php"if" for filtering andremove the link. Thanks !




Filtering videos - acrylian - 12-11-2020

Yes, of course ;-) You can use this for providing diffferentt HTML for each:

 if (isImagePhoto()) {
     // "real" image
 } else {
    // non "image" image like video, audio or else
 }



Filtering videos - Roland - 12-11-2020

Thank you acrylian !