Hello everybody!
I'm using Joomla 3.3.1 right now, and the latest JDownloads. Some of the modules (Top downloads, Latest downloads) doesn't shows the thumbnail picture. Is there any solutions? I don't know why, maybe not 100% compatible with the latest Joomla version, but I would like to fix it.
Thanks for the help! ;)
Jdownloads Modules thumbnail doesn't shown up, but the main plugin works well. Why?
[gelöscht durch Administrator]
Hi
In the picture you attached it shows the 'No-thumbnail' pic. Did you set "Create Thumbnails from uploaded pics? " to Yes in Config Pictures tab. Also "Use this also for auto monitoring?"
Colin
PS it would assist if you attached a screen shot of the relevant part of the Config Pictures Setup
Yes of course! I really don't know what am I doing wrong.
[gelöscht durch Administrator]
Hi,
I am reproducing what you are seeing. Have looked at code. Think this is a bug so I will move this topic to Bugs.
Colin
Okay, I'm waiting for the solution. :)
Sorry for the delay.
It seems that we have here a bug in the modules since the thumbnail db fields was changed. I will check and fix this very soon.
Thank you! :)
Any fix for this yet? I'm having the same problem and will like to get it fix as well thank you very much for your hard work Arno and ColinM
new versions use the images in a table column, but the template uses data from an empty column thumbnail
small adjustment in the template fix problem in version 3.2.14 Beta
add :
$help_for_image = explode("|",$files[$i]->images);
$image_jdownload = $help_for_image['0'];
(0 for the first image, 1 for the second image, ....)
change :
$files[$i]->thumbnail to $image_jdownload
example :
// add the first download screenshot when exists and activated in options
if ($view_thumbnails) {
$help_for_image = explode("|",$files[$i]->images);
$image_jdownload = $help_for_image['0'];
if ($image_jdownload) {
$thumbnail = '<img class="img" src="' . $thumbfolder . $image_jdownload . '" width="' . $view_thumbnails_size . '" height="' . $view_thumbnails_size . '" border="' . $border . '" alt="' . $files[$i]->file_title . '" />';
} else {
if ($view_thumbnails_dummy) {
$thumbnail = '<img class="img" src="' . $thumbfolder . 'no_pic.gif" width="' . $view_thumbnails_size . '" height="' . $view_thumbnails_size . '" border="' . $border . '" alt="" />';
}
}
if ($thumbnail)
echo '<div class="jdhomepic" style="padding-bottom: 3px;"' . $alignment . '">' . $thumbnail . '</div>';
}
fix is not optimal, but functional
should be added in the administration of the option to select an image to display
Hi,
thanks for the hints. I have it now fixed in all modules for next beta 3.2.15.