[#] Thumbnails [Deleted]

A couple of questions...

1) If we have the 'thread thumbnail url' field as required, can that be field be edited once posted? (I'm not sure if it already does this, not installed yet) I'd rather not have users be able to edit it.

2) Can you add support for 'videos' as well? So it would show the video instead of the image.
 
With the newest version, thumbnails don't work anymore. Only avatars. Nothing in error log.

Edit: If I select "Show Thumbnails in all forums" thumbnails work. But If I specify forums from the list. They don't work.
 
Last edited:
How do we rebuild the waindigo thumbnails cache? Do we delete all the thumbnails in the add-on folder? and then just let it rebuild itself?

I looked at the toos Rebuild Caches. But i'm not sure which one i should press.
 
How do we rebuild the waindigo thumbnails cache? Do we delete all the thumbnails in the add-on folder? and then just let it rebuild itself?

I looked at the toos Rebuild Caches. But i'm not sure which one i should press.

I just uncheck the "Enable Thumbnail Caching" in options. They seem to be rebuilt when I re-check the option.
 
With the newest version, thumbnails don't work anymore. Only avatars. Nothing in error log.

Edit: If I select "Show Thumbnails in all forums" thumbnails work. But If I specify forums from the list. They don't work.

Hmm. Everything's working fine for me, thumbnails are showing in specified forums and not others. Maybe disable thumbnail caching if it's on? I wonder if there's anything else you could rebuild to fix...
 
The cache builds itself whenever a list of threads is accessed. Whether it is on or off, it shouldn't stop thumbnails from displaying. If they are not displaying, make sure you have set it up to display the type of thumbnail you are expecting.
 
With the newest version, thumbnails don't work anymore. Only avatars. Nothing in error log.

Edit: If I select "Show Thumbnails in all forums" thumbnails work. But If I specify forums from the list. They don't work.


Mine is doing the same thing.

At first it was working because i didn't change any settings after installing.

But later today i decided to wanted to exclude 1 more forum. So i excluded 1 more forum and that's when it stopped working.

So i put it back to "Show thumbnails in all forums" and this works. So I disabled 1 forum again to see if it would work and same thing. It still won't work.

So now i have to keep it on "Show in all forums" I am using xenforo 1.41
 
Mine is doing the same thing.

At first it was working because i didn't change any settings after installing.

But later today i decided to wanted to exclude 1 more forum. So i excluded 1 more forum and that's when it stopped working.

So i put it back to "Show thumbnails in all forums" and this works. So I disabled 1 forum again to see if it would work and same thing. It still won't work.

So now i have to keep it on "Show in all forums" I am using xenforo 1.41

Yeah, you're right. I just did the same thing and broke everything. It's odd because the forums selected in the dropdown list didn't match the forums that thumbnails were enabled for... And now that I've edited the selected forums to test, thumbnails show in 0 forums no matter which ones are selected.
 
If you chose "Show thumbnails based on user permissions", and then set node permissions accordingly, thumbnails will display. But yes the "show thumbnails in forums" selection is broken with this update :cry:

Hopefully it's a quick fix for @Waindigo ;)
 
Last edited:
I guess my original question was posted in the wrong forum or something?

Fatal error: Call to undefined method Waindigo_Listener_TemplatePostRender::_copyrightNotice() in /****/****/****/****/library/Waindigo/CopyrightNotice/Listener/TemplatePostRender.php on line 41
Got this after trying to install Thumbnails.. I considered going back and manually deleting these files but there are quite a few of them.. Is there by chance an easier way? I never got to run the installer so just removing the files should correct this i think. Advice?

Are you still receiving this error, or did the error go away once you finished uploading all the files?
@Waindigo yeah im still getting this error. as a matter of fact i re uploaded the files just to be sure.. (Thumbnails) I noticed its not yet been updated to be compatible with 1.4 maybe the problem. Its just a closed forum i was testing the plugins compatibility with 1.4 on so not a huge deal but before i wipe out the entire installation or manually delete all the files. just wanted to be sure their isnt an easier solution.
 
Last edited:
Waindigo updated Thumbnails by Waindigo with a new update entry:

Version 2.1.1 released

Bug fixes:
  • Fixed option for selecting which forums show thumbnails. Select menu now also includes other nodes and depth indicators to make it easier to select forums.
  • Fixed division by zero error if height or width are set to zero in the main options. This is no longer accepted as a value.
  • Fixed bug that if thumbnails are required, attachments are not recognised in new threads as fulfilling that requirement.

Read the rest of this update entry...
 
Have i said something wrong here or in the other thread to deserve being ignored? Im simply trying to get a site back online that the files from this plugin seem to have broke. I dont know what the error i provided means.. All im asking for is a translation so i can possibly begin trouble shooting the issue.. Waindigo if you have a problem with me please let me know so i can remove your plugins from my site.. I cant use them if i cant expect even a little bit of the same quality support you provide others of this community.. (nothing personal just recognizing the limitations of my skills and acting accordingly.. I also have moved away from other unsupported plugins for the same reason)
 
Maybe, I have a cpl posts in two different threads / Just not sure which one of the two the error pertains to.. Or what to do about it Since its rendered my site unusable..
 
Last edited:
Hello. Is there anyway to make the thumbnails unclickable? I want them to just act as a thumbnail. Just for viewing not clicking.

Because at the moment you can either click on the thumbnail or the topic title to take you into the thread.

I want them to be able to only click on the thread titles not thumbnails.

Thanks,
 
I also forgot: A Feature Request

I wish we could set Node Thumbnails per Forum Basis.

This way. You could have a certain thumbnail for each forum node. Then inside the forum your add-on could work as normal.


Here is a pic i made:


Capture.webp
 
Hello. Is there anyway to make the thumbnails unclickable? I want them to just act as a thumbnail. Just for viewing not clicking.

Because at the moment you can either click on the thumbnail or the topic title to take you into the thread.

I want them to be able to only click on the thread titles not thumbnails.

Thanks,
well, that's quite easy.

go to the template: waindigo_forum_list_thumbnail_thumbnails
remove the the a tag from the code

so that it should look like this
Code:
  <xen:require css="waindigo_thread_list_thumbnails.css" />
  <div class="listBlock posterAvatar">
     <span class="thumbContainer">
       <span class="img" style="width:{$thread.thumbnail.max-width}px; height:{$thread.thumbnail.max-height}px;"><span style="width:{$thread.thumbnail.max-width}px; height:{$thread.thumbnail.max-height}px; overflow: hidden;"><img src="{xen:if {$thread.thumbnail.thumbnailUrl}, {$thread.thumbnail.thumbnailUrl}, {$thread.thumbnail.thumbnail_url}}" style="margin-left:{$thread.thumbnail.horizontal-position}px; margin-top:{$thread.thumbnail.vertical-position}px; width:{$thread.thumbnail.width}px; height:{$thread.thumbnail.height}px;" /></span></span>
     </span>
  </div>
though it's not tested :D
 
Top Bottom