The simpler media website CMS
Hello everyone,
i need a little help , i have a small issue, i need to view gif animated on thumb or list of image. It's work on zentheme and not to mobile theme.
I found my issue on image.php on line 41 :
i change by this with : getFullImageURL()
if (isImagePhoto()) {
?>
" alt="<?php printBareImageTitle(); ?>" style="max-width:<?php echo getDefaultWidth(); ?>px"/>
<?php
It's work.
But i need this option on list view in album .
In album.php i found this code but it doesn't work.
I change by album.php from zen theme , i have the same issue, i don't think is the right file.
Can you help me please ?
Thanks
Comments
Please escape code correctly using backticks like this
some code
(for inline) or using four spaces before the code:https://daringfireball.net/projects/markdown/syntax#precode (tabs don't really work here)
Actually that should be the right place. You need to replace the
printCustomSizedImage()
functiom call with a full image one as you did above.Thanks acrylian
I don't understand, my zen theme don't display gif animated. i don't find the setting.
Is there a general setting for this ?
When i change
by
i have the same problem.
Thanks you
get
functions don't print anything, they just "get" data. You have to useecho
with it. In this case you have to use it with animg
element of course as it just returns an url.Example:
<img src="<?php echo html_encode(getFullImageURL()); >" alt="">
Hi,
Thank you so much ! It's perfect