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
  #322  
Old 06-18-2009, 05:07 PM
6piston's Avatar
6piston 6piston is offline
 
Join Date: Apr 2005
Posts: 139
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hi theOZer and neverbored
sorry to bother you guys again,

This is regarding the search result thumbs be it the new post / regular search and threads by users. I really need to get it working actually

I have been reading your replies over and over again and editing the search.php countless of times using the one from the zip and the default one i have and then editing it with your code and I still can't get the thumbnails to display correctly on the search results.

I have also tried your Thread Thumbnail - all forums plugin xml code theOZer and then disabling the stand Thread Thumbnail plugin and still no good.

I got it HALF working and this is what i found:
-New post thumbnails work but only in 2nd page
-Certains terms when searched will display thumbnails in the search result, other terms when search will not display any thumbs at all and looks just like the default search result page.
-Find all Threads by User when clicked on certain members will display thumbnails in search result. other members not at all, like default.

Have anyone had this before?

Thanks!
Tom
Reply With Quote
  #323  
Old 06-18-2009, 06:03 PM
Arkham's Avatar
Arkham Arkham is offline
 
Join Date: Nov 2001
Location: Toronto, Ontario
Posts: 134
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by 6piston View Post
hi theOZer and neverbored
sorry to bother you guys again,

This is regarding the search result thumbs be it the new post / regular search and threads by users. I really need to get it working actually

I have been reading your replies over and over again and editing the search.php countless of times using the one from the zip and the default one i have and then editing it with your code and I still can't get the thumbnails to display correctly on the search results.

I have also tried your Thread Thumbnail - all forums plugin xml code theOZer and then disabling the stand Thread Thumbnail plugin and still no good.

I got it HALF working and this is what i found:
-New post thumbnails work but only in 2nd page
-Certains terms when searched will display thumbnails in the search result, other terms when search will not display any thumbs at all and looks just like the default search result page.
-Find all Threads by User when clicked on certain members will display thumbnails in search result. other members not at all, like default.

Have anyone had this before?

Thanks!
Tom
Have you rebuilt the attachment counters? Try adding a new thread with an img attachment and see if the new one works. I've run into situations where sometimes existing threads with existing thumbs don't show up.

Don't replace the search.php file entirely -- just edit your existing vB version's search.php and add the single line (or 2, including the comment line). I think it's around line 2600-ish. You shouldn't have to fiddle with the search.php much.
Reply With Quote
  #324  
Old 06-18-2009, 11:59 PM
theOZer's Avatar
theOZer theOZer is offline
 
Join Date: Mar 2007
Location: Colorado, USA
Posts: 212
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

6piston,
which vB version?
vB templates or other?
other issues, like, are you running just vB or do you run vBSEO, whatever?
If you have Manage Attachments turned on, and if in the first thread post and the user used vB Manage Attachments to load an image this mod will display that attachment's thumbnail, if coded to do so. The mod's trick is an outer join that relies on the fact that there's a thread first post id that can find/grab the associated attachment postid, enabling the outer join, piggybacking the attachment's row info onto the select.
Create a testvb. Do all your testing there.
After I set up a clean/virgin vB383 testvb, I put together a 'My Way to Install Thread Thumbnails' write up as I updated this testvb to use thread thumbnails in forums/new posts, searches, and tag searches. PM me if you'd like a pdf of this write up.
Ciao, Oz
Reply With Quote
  #325  
Old 06-19-2009, 06:36 AM
6piston's Avatar
6piston 6piston is offline
 
Join Date: Apr 2005
Posts: 139
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Arkham View Post
Have you rebuilt the attachment counters? Try adding a new thread with an img attachment and see if the new one works. I've run into situations where sometimes existing threads with existing thumbs don't show up.

Don't replace the search.php file entirely -- just edit your existing vB version's search.php and add the single line (or 2, including the comment line). I think it's around line 2600-ish. You shouldn't have to fiddle with the search.php much.
hi Arkham

Do yours work fully? Then i gotta try your way right now.

I'll also try to use a fresh copy of 3.7.2 search.php again and include the lines.
Let me get this right:
-Fresh 3.7.2 search php
-Add the 2 Jason lines that is included in the TT's Zip's search.php

Thanks!

Quote:
Originally Posted by theOZer View Post
6piston,
which vB version?
vB templates or other?
other issues, like, are you running just vB or do you run vBSEO, whatever?
If you have Manage Attachments turned on, and if in the first thread post and the user used vB Manage Attachments to load an image this mod will display that attachment's thumbnail, if coded to do so. The mod's trick is an outer join that relies on the fact that there's a thread first post id that can find/grab the associated attachment postid, enabling the outer join, piggybacking the attachment's row info onto the select.
Create a testvb. Do all your testing there.
After I set up a clean/virgin vB383 testvb, I put together a 'My Way to Install Thread Thumbnails' write up as I updated this testvb to use thread thumbnails in forums/new posts, searches, and tag searches. PM me if you'd like a pdf of this write up.
Ciao, Oz
hi theOZer thanks for the reply!

it's 3.7.2

I do have VBSEO. The thread thumbnails in my selected forums run beautifully right from the start. so i'm not sure if it's anything to do with VBSEO

My main goal is to get the
-regular searches with thumbnails to work in those selected forums.
-find all users' threads to also display the thumbs

Just in case it makes any difference, some of my search links aren't the default ones, for example, my "new post" links only display relevant new posts from certain forums:
Code:
http://www.site.com/search.php?do=getnew&exclude=57,52,56,53,54,83,72,55,29
I did try it without excluding the forums and it's the same.

I will also create a test site to do this

Please do PM me the pdf file you made. i;m sure it'll help me much! great job getting all of it to work and more
Reply With Quote
  #326  
Old 06-19-2009, 02:36 PM
unforgotten unforgotten is offline
 
Join Date: Jul 2006
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have a question, when I have these forum permissions set for the unregistered not logged in user group:

Can View Forum: Yes
Can View Thread Content: No

Unregistered users can not see the thumbnail, is there a way they can see see the thumbnail even if they can't access the topics, thanks!!
Reply With Quote
  #327  
Old 06-19-2009, 10:41 PM
theOZer's Avatar
theOZer theOZer is offline
 
Join Date: Mar 2007
Location: Colorado, USA
Posts: 212
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

After a little testing, my educated guess is apparently not. If you can't see the thread and the attachment is part of that thread, hmmmm.
If you have set up thumbnails to display in forum thread lists, new posts, searches, and tag searches hopefully that will be enough encouragement to make someone join, become a member of your forum, so they can see that thumbnailed image fully.
Reply With Quote
  #328  
Old 06-21-2009, 02:12 PM
unforgotten unforgotten is offline
 
Join Date: Jul 2006
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

well is there a way maybe for the attachments to be hosted outside the thread so they can preview it?
Reply With Quote
  #329  
Old 07-28-2009, 02:18 AM
Greeksgal Greeksgal is offline
 
Join Date: Jul 2006
Posts: 72
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Does this work with 3.8.3?
Reply With Quote
  #330  
Old 07-28-2009, 03:03 AM
MissKalunji's Avatar
MissKalunji MissKalunji is offline
 
Join Date: Aug 2003
Location: Canada
Posts: 2,845
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

yes.
Reply With Quote
  #331  
Old 07-28-2009, 11:10 AM
Cerbero1000 Cerbero1000 is offline
 
Join Date: May 2005
Posts: 110
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi guys,
I can't see thumbs in search page only (added 2 line code on my 3.7.5 search.php).
In forumdisplay all works fine.
Can you help me?
thanks
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 07:02 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04648 seconds
  • Memory Usage 2,320KB
  • Queries Executed 27 (?)
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
  • (5)bbcode_code
  • (3)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_postinfo_query
  • fetch_postinfo
  • 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