The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Thread Thumbnail Details »» | |||||||||||||||||||||||||
This plugin is the newest version of the Thread Thumbnail plugin
This plugin will display the first attachment as a thumbnail on forumdisplay.php New Features:
Installation: In your AdminCP, go to Plugin System, Download/Upload Plugins and import the xml document. Be sure to change the forum ids in the $thumbsforums array to the forum ids you want to enable thumbnails in. The plugin comes with the Search Thumbnails enabled. If you do not want to have thumbnails show up in the search results, make sure you deactivate it. If you would like thumbnails to display in the search results, you will need to replace your search.php page with the one in the zip file. Unfortunately vBulletin forgot to include a hook variable where it is necessary for this to work. I have added 1 line to search.php with the hook variable. There is no way around this until vbulletin adds it themselves. Next you will need to modify your threadbit template: Find: Code:
<if condition="$show['threadicons']"> <td class="alt2"> <if condition="$show['threadicon']"> <img src="$thread[threadiconpath]" alt="$thread[threadicontitle]" border="0" /> <else /> </if> </td> </if> Code:
<if condition="$show['threadicons']"> <td class="alt2" align="center" valign="middle"> <if condition="$tt_displaythumbs"> <if condition="($thread['attachmentid']) AND ($thread['thumbsize'])"> <a href="showthread.php?$session[sessionurl]t=$thread[threadid]"> <img src="attachment.php?attachmentid=$thread[attachmentid]&stc=1&thumb=1" alt="" border="0" /> </a> <else /> <img src="$stylevar[imgdir_misc]/nothumb.jpg" alt="" border="0" /> </if> <else /> <if condition="$show['threadicon']"> <img src="$thread[threadiconpath]" alt="$thread[threadicontitle]" border="0" /> </if> </if> </td> </if> __________________________________________________ ___ Add-ons (Optional) UserCP option to turn the thumbnails on/off on a per user basis Go into your admincp and click User Profile Fields->Add New User Profile Field. Select "single selection radio buttons", click continue. For title put "Thread Thumbnails", for description put "This will allow you to turn the thumbnails of threads on and off." For options, enter "On" and "Off". Skip down to Display Page and choose "Options: Thread Viewing". In your threadbit template(assuming you already applied the template changes above): Find: Code:
<if condition="$tt_displaythumbs"> Code:
<if condition="($tt_displaythumbs) AND ($bbuserinfo['field5'] <> 'Off' OR $show['guest'])"> Show Your Support
|
Comments |
#112
|
||||
|
||||
NeverBored,
I did a file compare using TOAD: vB369 search.php versus Thread Thumbnails search.php. There's very little difference between these two search.phps. There's quite a difference between vB370RC2 search.php versus Thread Thumbnails search.php, though. I put together a cluge-bag screen capture of the search.php differences, put into a Word document, that I can PM to you. ~OZ |
#113
|
||||
|
||||
If you add JasonMerchant's code, a comment line and code line, to the vB370RC2 search.php it APPEARS to work; now shows the thumbnails when doing a New Posts search.
Code:
// do data query if (!empty($itemids)) { $ids = implode(', ', array_keys($itemids)); $dataQuery .= '(' . $ids . ')'; //edited by jason $dataQuery .= " " . $hook_query_where; $items = $db->query_read_slave($dataQuery); $itemidname = iif($search['showposts'], 'postid', 'threadid'); $dotthreads = fetch_dot_threads_array($ids); } Give this a try. This truly is a wonderful hack and it's a priceless addition to any art forum that has people posting their art work. ~OZ |
#114
|
|||
|
|||
Great, that got the thumbnails working for search, thanks.
Though, a small problem, it displays thumbnails (the no thumbnail available image) for threads not in the specified forums. It did this using the search.php included in the download too, so I don't know if this is how it works or just a bug using it as is on 3.7. |
#115
|
||||
|
||||
True enough. It appears any 'new posts,' be it from whichever forum, either shows the 'No Image' icon or, if there's an attachment, it shows the thumbnail.
If the forum itself is not included in the TT plugin's list of forums to display, example, $tt_thumbsforums = array(4, 5, 17, 46, 50, 53); then that specific forum's threads list do not then show thumbnails when viewed. This 'feature'/not-necessarily-a-bug appears to have been 'in place' since day one the hack has been around. (I also see this glitch occurs in vB3.6.x.) |
#116
|
|||
|
|||
I got mysql error after upgrade to 3.6.9 when search for thread started by member.
Quote:
|
#117
|
||||
|
||||
You need to turn off the Thread Thumbnail - Search plugin.
-OR- Add Jason's code to the vB369 search.php, as mentioned in my Post #112, above. ~OZ |
#118
|
|||
|
|||
Hi, I installed this mod which is great, but it only shows "No Thumbnail Available" also if there is an image attachment. I'm running 3.6.8 patch level 2.
See: http://www.inoudeansichten.nl/zoekpl...splay.php?f=40 I used: Thread_Thumbnail_v1-1.zip - imported the XML - activated plugin - updated threadbit Any suggestions how to solve this ? thanks! |
#119
|
||||
|
||||
I'm looking at your web site...
Are you dead certain that you've updated threadbits correctly? Most likely, yes. Did you update the Thread Thumbnail plugin, adding your test forums ID number (bolded below)? http://www.inoudeansichten.nl/zoekpl...display.php?f=40 (I'd also try adding forum ID 42 (the main forum), to test it out.) In the Thread Thumbnail plugin, is forum 40 been added?: example, $tt_thumbsforums = array(40, 42); Did you set up a member option User Profile field for Thumbnails On/Off? If not then do NOT include the code to check for the user profile field in your threadbits. (I have this option added.) Have you replaced your vB368PL2 search.php with Jason's search.php? (It works for vB368 but vB369 a/o vB370x requires modding the search.php adding Jason's code. See my post # 112 , above, concerning this.) Jason's TT works and has always worked for me. Good luck getting this to work. It's a great hack. [Note: only an image posted as an attachment will/should show as a thumbnail pic; the test image INSERTS, e.g., your test3 post, won't show as thumbnails.] Later, ~OZ |
#120
|
|||
|
|||
OZ, thanks for your reply !
I upgraded my vBulletin to 3.6.9 - installed xml file - updated threadsbit - changed forum to #40 - update search.php (incl. your 112 post) - plugins are both activated but ... attachments still not displayed .... any other suggestions I can try ??? thanks! |
#121
|
||||
|
||||
winkm,
Joined your forum. Couldn't post in TEST forum to see if my hunch is right, but... the test threads' pictures are full sized. It appears that the images were inserted into the post code, not added as attachments through Manage Attachment at the bottom of an Advanced screen post. Images inserted directly into the code/the post don't have thumbnails; they're shown full sized, with no need to click on them to see them larger. That's my guess. ~OZ |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|