Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Thread Thumbnail Details »»
Thread Thumbnail
Version: 1.1, by jasonmerchant jasonmerchant is offline
Developer Last Online: Jun 2009 Show Printable Version Email this Page

Category: Forum Display Enhancements - Version: 3.6.8 Rating:
Released: 09-20-2007 Last Update: 09-20-2007 Installs: 209
Uses Plugins Template Edits
 
No support by the author.

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:
  • If there are attachments that are not images, it will skip them and go to the first image attachment.
  • Optional - you can now display thumbnails on search results.



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 />
			&nbsp;
		</if>
	</td>
</if>
Replace With:
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>
You will also need to upload an image to display if there are no image attachments here: $stylevar[imgdir_misc]/nothumb.jpg(ex: http://www.mysite.com/forums/images/misc/nothumb.jpg). I've made a simple one you can use or you can make your own. By default thumbnails are confined in a 100x100 px area, I found that it looks good to make the "no image" image about 100x83 px.

__________________________________________________ ___

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">
Replace with:
Code:
<if condition="($tt_displaythumbs) AND ($bbuserinfo['field5'] <> 'Off' OR $show['guest'])">
You need to replace field5 with the field name of the profile field you created earlier.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #262  
Old 12-03-2008, 05:31 PM
Cocko Cocko is offline
 
Join Date: Oct 2006
Location: Germany
Posts: 143
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Geek Article and Review System (GARS) LITE or the paid GARS

Header images are uploaded images from article / review authors
which are shown in threadlists and stored by GARS but not vB
attachment system.

It would be interresting how search results from Thread Thumbnail
and GARS get together.
Reply With Quote
  #263  
Old 12-03-2008, 09:32 PM
theOZer's Avatar
theOZer theOZer is offline
 
Join Date: Mar 2007
Location: Colorado, USA
Posts: 212
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Cocko,
I got on thevBGeek forum; this GARS Module update/whatever has yet to be written by them; the vB3.5.3 GARS LITE Version 1 on vB.org doesn't contain the threadblock.php file.
Get me a copy of this threadblock.php and I'll see if I can figure out how to incorporate this into displaying uploaded images in vB.
I probably can't help you here, but, we will see.
Reply With Quote
  #264  
Old 12-06-2008, 04:29 PM
james shadle's Avatar
james shadle james shadle is offline
 
Join Date: Oct 2007
Posts: 26
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Howdy!
I upgraded 3.7.4 from 3.6.8 and I can't get Thread Thumbnail to work.
Thread Thumbnails worked great with 3.6.8.

Is it something I might be doing wrong or is it not compatible with 3.7?

Thanks James
Reply With Quote
  #265  
Old 12-06-2008, 07:39 PM
theOZer's Avatar
theOZer theOZer is offline
 
Join Date: Mar 2007
Location: Colorado, USA
Posts: 212
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

James,
Yes, this mod works in vB3.7.4, also in vB3.8.0 betas & RC1.
After reverting your threadbit template(s) to vB374 did you re-add the thread thumbnail code to the threadbit template(s)? The threadbit template IF statement you need to update is a bit different from vb3.6.8's threadbit template but you should be able to figure it out, where to add Jason's TT code.
If you have the 'Thread Thumbnail - Search' plugin turned ON - Did you add the TT code to the vB3.7.4 search.php file? (see Post # 112 on Page 8, the change also applies to vB374)
If you have the 'Thread Thumbnail - Tag Search' plugin turned ON - Did you add the TT code to the vB3.7.4 tags.php file? (see Post # 169 on page 12, this change also applies to vB374)
I have a bit lengthy (too lengthy to post) write up on installing just the forum Thread Thumbnails mod. I can PM you it if you're interested.
Regards, theOZer
Reply With Quote
  #266  
Old 12-08-2008, 08:47 AM
indiawilds indiawilds is offline
 
Join Date: Nov 2008
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,

I am using vbulletin 3.7.4 version. I have enabled the display thumbnails option for viewing thumbnails in the thread by using the hack thread thumbnails.

I have also enabled the view image inline to view full images in the posts.
I want the attachment to be seen as a full image instead of a thumbnail in the posts.

Please let me know how i can see both the thumbnails and the attachments.

Thanks
Reply With Quote
  #267  
Old 12-09-2008, 07:36 AM
indiawilds indiawilds is offline
 
Join Date: Nov 2008
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,

After using this plugin i am able to see the thumbnails in the thread, with the display thumbnail option set to 'yes', but by doing that the attachments also appear as thumbnails.

so can you please suggest a way out in which i am able to see the thumbnails as well as view the attachments in line in the posts.

really need your help in this.

Thanks.
Reply With Quote
  #268  
Old 12-09-2008, 11:14 PM
NeverBored NeverBored is offline
 
Join Date: Feb 2008
Location: CA
Posts: 138
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by indiawilds View Post
Hi,

After using this plugin i am able to see the thumbnails in the thread, with the display thumbnail option set to 'yes', but by doing that the attachments also appear as thumbnails.

so can you please suggest a way out in which i am able to see the thumbnails as well as view the attachments in line in the posts.

really need your help in this.

Thanks.
Keep thumbnails on, but edit the thumbnail template to display the full size image. If that's not enough info I explained exactly what to do earlier in this thread, just find my post.
Reply With Quote
  #269  
Old 12-10-2008, 06:35 PM
StormLily StormLily is offline
 
Join Date: Jan 2008
Posts: 21
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have recently installed this mod, which seems to be working quite well, but for some reason when I go into the Quick Links >> New Posts, a bunch of code is displayed and it doesn't give me any of the new posts within the forum. Did I do something wrong? I do not have the thumbnail search enabled either, could that be it?
Reply With Quote
  #270  
Old 12-10-2008, 07:12 PM
theOZer's Avatar
theOZer theOZer is offline
 
Join Date: Mar 2007
Location: Colorado, USA
Posts: 212
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

StormLily,
The Thread Thumbnail - Search plugin is installed as 'Active' along with the forum Thread Thumbnail plugin when you do the install. If you have not also tweaked Search.php, adding Jason's code, you will get database errors when you do a New Post search. You need to go into Plugin Manager to turn plugins On/Off, to turn this plugin Off, if applicable.
Does this help?
OZ
Reply With Quote
  #271  
Old 12-10-2008, 08:40 PM
StormLily StormLily is offline
 
Join Date: Jan 2008
Posts: 21
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by theOZer View Post
StormLily,
The Thread Thumbnail - Search plugin is installed as 'Active' along with the forum Thread Thumbnail plugin when you do the install. If you have not also tweaked Search.php, adding Jason's code, you will get database errors when you do a New Post search. You need to go into Plugin Manager to turn plugins On/Off, to turn this plugin Off, if applicable.
Does this help?
OZ
What exactly needs to be done with the Search.php?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 12:31 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.12701 seconds
  • Memory Usage 2,321KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (4)bbcode_code
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete