View Full Version : Forum Display Enhancements - Thread Thumbnails
Null Parameter
03-02-2010, 10:00 PM
Thread Thumbnails
Created By: Null Parameter
The Thread Thumbnails mod allows users of a forum to specify, in several possible ways, a thumbnail for their thread to be displayed on Forumdisplay thread list.
I had created the mod for vB 3.8 (https://vborg.vbsupport.ru/showthread.php?t=214755), but people we're crying out for a ported version to vB4, and, thanks to help from several of the members, here it is!
Description of Features
Thumbnails are displayed on the Forumdisplay next to the threadicon.
In the ACP Options, assuming you are using the Auto-Template Edits, you can choose which side of the icon to display it on.
Forum Display Screenshot (https://vborg.vbsupport.ru/attachment.php?attachmentid=113497)
When submitting a new thread or editing the first post of a thread, a thumbnail can be specified directly if the User Entered URL option is chosen in the ACP. Another option is to Require the thumbnail. If the thumbnail isn't required, it may be left blank by the user, and it can either not be shown at all on forumdisplay or be replaced by a default thumbnail image specified in the ACP.
New Thread Screenshot (https://vborg.vbsupport.ru/attachment.php?attachmentid=113499)
Edit Post Screenshot (https://vborg.vbsupport.ru/attachment.php?attachmentid=113498)
All available options in the ACP include...
Turn Off/On Thumbnails
Turn Off/On Auto-Template Edits
Which forums to use thumbnails in
Turn Off/On thumbnails on sticky threads
Require thumbnails (doesn't work with attachment option)
Choose to retrieve thumbnails from one of the following
User Entered URL
First Attachment
First Image in Post
Choose where thumbnail is displayed in threadbit (relies on Auto-Template Edits)
Thumbnail CSS Style
Specify No Thumbnail Replacement ImageACP Options Screenshot (https://vborg.vbsupport.ru/attachment.php?attachmentid=113500)
This version is also now using phrases, so it can more easily be translated!
Installation
Install the product XML file. That's it!
If you have a highly customized style, there is a chance that the auto-template edits will not work. In that case, you will need to make the template edits manually. See the included README for more details.
Thumbnail Style
The style for thumbnails is specified in the ACP. It is used to choose exactly how thumbnails will be displayed, including width, height, margins, borders and many other attributes.
The style is specified in CSS, and is applied directly to the HTML img tag.
Here are some examples of possible thumbnail styles, along with a description of what they will do. If you don't know much about CSS, you can learn more here (http://www.w3schools.com/css/default.asp).
Every thumbnail will have a width of 100 pixels, but be constrained to being a maximum of 150 pixels in height
width:100px;max-height:150px;
Every thumbnail will have a width of 120 pixels and have a margin of 3 pixels around the thumbnail, so that it doesn't touch any of the other elements in the threadbit
width:120px;margin:3px;
Thumbnails aren't allowed to exceed 150 pixels in either dimension, and are also mildly transparent
max-width:150px;max-height:150px;opacity:0.8;filter:alpha(opacity=80); Note: Using CSS positioning attributes (i.e. position, float, clear, etc.) could mess up the threadbit structure, so beware.
FAQs
The version of this mod for vB 3.8 showed thumbnails in the search results. Where did they go?The search system between vB 3.x and vB4 changed significantly. I didn't have the time to figure out the complexity of it, and was unable to find any examples of other mods that integrated into the search results.
If you know how this is done, feel free to contact me and we can work to get this feature back in!
Does this mod work for RTL Languages, such as Arabic?
There is a separate product XML file available for download that has the appropriate changes to support RTL languages.
When I choose the First Image in Post option, no thumbnails show up in my current threads. Why?Thumbnails are only updated when a new thread is created or when the first post is edited. Parsing through every forum/thread whenever the options are changed could be disastrous for performance.
Luckily, a user of this mod, megamoose (https://vborg.vbsupport.ru/member.php?u=185404), created a script that you can use to help this out. I want this method to be known, but because I didn't write this, I make no promises that it will work.
This should enable batch processing. I have tested it.
Change the $STEP_AMOUNT at the top to something lower if you still get errors
Remember this is for vB version 3.8
Always backup your data before running scripts like these
TO THOSE WHO HAVEN'T BEEN FOLLOWING THE CONVERSATION:
This script will go through all your existing posts and give them thumbnails, based on the First IMG in post option.
<?php $STEP_AMOUNT = 600; ?>
<input type="button" id="btnNext" value="Process Next Results" onClick="window.location='?start='+(<?php echo $_GET["start"]; ?>+<?php echo $STEP_AMOUNT;?>)" disabled=true><br>
The button above should enable once this batch is complete!<br>
<br>
<?php
error_reporting(E_ALL & ~E_NOTICE & ~8192);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('SKIP_SESSIONCREATE', 1);
define('NOCOOKIES', 1);
define('THIS_SCRIPT', 'xupdate');
define('CSRF_PROTECTION', true);
// #################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array();
// get special data templates from the datastore
$specialtemplates = array();
// pre-cache templates used by all actions
$globaltemplates = array();
// pre-cache templates used by specific actions
$actiontemplates = array();
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
if (!$_GET["start"]) { $_GET["start"] = 0; }
$threads = $db->query_read_slave("
SELECT *
FROM " . TABLE_PREFIX . "thread
LIMIT ".$db->escape_string($_GET["start"]).",". $db->escape_string($_GET["start"]+$STEP_AMOUNT));
while ($thread = $db->fetch_array($threads)){
echo "<b>Thread:</b> ".$thread["title"]."<br>";
$posts = $db->query_read_slave("SELECT * FROM `" . TABLE_PREFIX . "post` WHERE `postid` = '".$thread["firstpostid"]."'");
$post = $db->fetch_array($posts);
echo "
<b>First Post:</b> ".$post["title"]."<br>";
preg_match('/\[img\](.*?)\[\/img\]/i',$post["pagetext"],$matches);
$query = "UPDATE `" . TABLE_PREFIX . "thread` set `thumbnailurl` = '".$db->escape_string($matches[1])."' WHERE threadid = " . $thread["threadid"];
echo "
<b>SQL:</b>".$query."<br><br>";
$db->query_write($query);
}
?>
<script> document.getElementById("btnNext").disabled = false; </script>
Translations
Arabic (https://vborg.vbsupport.ru/showpost.php?p=1996963&postcount=31)
Versions
v3.1
Fix for Required Thumbnails
New feature to automatically use ALL Forumsv3.0
Support for vB4!
Use Phrases
Option to make Thumbnails Required
Option to select where to show the thumbnail on Forumdisplay
Option to specify the CSS Style of thumbnail imagesMod Support
I am fully willing to support this mod and continue to add new feature to it when they are desired enough to make them applicable to the product as a whole. The issue is that I do not have access to a vB4 installation, and therefore cannot develop.
Several people were gracious enough to offer up a test installation for me to use, and that is how this mod exists today. If any new features/fixes are wanted, other people will need to be just as gracious.
Also, since I don't own a vB4 instance, I'm supporting this strictly out of the kindness of my heart. So, if you wish to Support me as a developer, it would be much appreciated.
Enjoy!
Aclikyano
03-03-2010, 05:37 PM
thanks ill check it out! :)
Aceman
03-03-2010, 05:41 PM
not first.. but AWESOME!
Xtrigit
03-03-2010, 06:06 PM
OMG!!!!!!! Thank you so much! This is the ONLY MOD that made me downgrade to 3.8.4. I will test it later this week and see how it goes.
kalisekj
03-03-2010, 06:43 PM
Awesome A Must Have for me and most of my sites. Thank You! Now To Pray it works.
kalisekj
03-03-2010, 07:04 PM
OK First Bug as I can see now, I changed to before thread icon and now have 2 pics on the forum display page 1 before thread icon and 1 after thread icon. LOL
VBoptimize Users You Must Disable Cache Styles (Set It To No) then the thumbnails will work as needed. Also You need to Disable vB Optimise: Cache Templates so that you do not get multiple Thumbnails on Forum Thread Display. This is just a small part of vboptimize that is well worth turning off to get thumbnails to work.
Null Parameter
03-03-2010, 07:11 PM
OK First Bug as I can see now, I changed to before thread icon and now have 2 pics on the forum display page 1 before thread icon and 1 after thread icon. LOL
VBoptimize Users You Must Disable Cache Styles (Set It To No) then the thumbnails will work as needed. This is just a small part of vboptimize that is well worth turning off to get thumbnails to work.
LOL, I was just about to post that when you edited it in. vB Optimize goes behind vB's caching and caches the templates on it's own. This leads to cached templates receiving multiple edits when switching between Before/After Thread Icon.
akvaryumforum
03-03-2010, 07:11 PM
No Thumb selection not work. I just links to /attachment.php?attachmentid=&stc=1&thumb=1 al no thumbs.
Null Parameter
03-03-2010, 07:16 PM
No Thumb selection not work. I just links to /attachment.php?attachmentid=&stc=1&thumb=1 al no thumbs.
Ahh, nice catch. I have a separate code path for the attachments part. I'll add that in right away.
Deceptor
03-03-2010, 07:17 PM
LOL, I was just about to post that when you edited it in. vB Optimize goes behind vB's caching and caches the templates on it's own. This leads to cached templates receiving multiple edits when switching between Before/After Thread Icon.
Anything I can do to resolve that? :)
Null Parameter
03-03-2010, 07:27 PM
Ahh, nice catch. I have a separate code path for the attachments part. I'll add that in right away.
I uploaded a new version with this change. Go try it now, the First Attachment + No Thumbnail Image combo should work now.
Anything I can do to resolve that? :)
I'm not really sure, because I have no idea how vB Optimize works. :)
I was basing that answer/guess solely on the description of the mod. It really depends upon when and how the template caching is done vs how and when I do the auto-edits.
akvaryumforum
03-03-2010, 07:29 PM
The problem solved, now it's workin like a charm for me. :)
Null Parameter
03-03-2010, 07:33 PM
The problem solved, now it's workin like a charm for me. :)
Good to hear! Let me know if you see anything else.
kalisekj
03-03-2010, 07:45 PM
deceptor read my thread above It tells what options to turn off in vboptimize to get the thumbnails to show properly.
Deceptor
03-03-2010, 07:57 PM
I uploaded a new version with this change. Go try it now, the First Attachment + No Thumbnail Image combo should work now.
I'm not really sure, because I have no idea how vB Optimize works. :)
I was basing that answer/guess solely on the description of the mod. It really depends upon when and how the template caching is done vs how and when I do the auto-edits.
The cache doesn't intrude really, it basically stops vBulletin from querying templates. The templates are still placed in the array as they normally would.
Null Parameter
03-03-2010, 08:03 PM
The cache doesn't intrude really, it basically stops vBulletin from querying templates. The templates are still placed in the array as they normally would.
The issue is that the auto-template edits edited the cached template, then the options changed to make the edit in a different place in the template. Instead of the second edit replacing the first one, they both remained intact.
Null Parameter
03-03-2010, 08:04 PM
deceptor read my thread above It tells what options to turn off in vboptimize to get the thumbnails to show properly.
He's the Developer of vB Optimize, that's why he asked if he could help ;)
kalisekj
03-03-2010, 08:15 PM
He's the Developer of vB Optimize, that's why he asked if he could help ;)
I thought his name looked familiar. I hope between the 2 of you something can be resolved so I can turn those 2 features back on in vboptimize. WooHoo!
Aceman
03-03-2010, 08:19 PM
Is there a way to turn OFF thread icons if a threads thumbnails are showing (auto template edits on)? If not it would be a great option. I suppose I could just edit the template.
akvaryumforum
03-03-2010, 08:22 PM
Is it possible to add function like this zoom?
http://www.simplebits.com/bits/photo_zoom.html
Null Parameter
03-03-2010, 08:27 PM
Is there a way to turn OFF thread icons if a threads thumbnails are showing (auto template edits on)? If not it would be a great option. I suppose I could just edit the template.
Theoretically, I could probably do that.
Maybe make a third Location option, "Replace Threadicon".
Null Parameter
03-03-2010, 08:31 PM
Is it possible to add function like this zoom?
http://www.simplebits.com/bits/photo_zoom.html
That's been talked about before. It's a definite possibility, if I can find a good way to do it with straight CSS, then I might add it in.
Deceptor
03-04-2010, 12:46 AM
The issue is that the auto-template edits edited the cached template, then the options changed to make the edit in a different place in the template. Instead of the second edit replacing the first one, they both remained intact.
I'll look into your mod here and see what can be done :)
Null Parameter
03-04-2010, 12:58 AM
2- old thread steel without thumb ... can you make something like SQL order to fix all threads plzz?I'm not sure that I understand the problem. Could you please explain it in more detail?
ahhhha
for 1st bug
fix:
find template thread_thumbnail_threadbit
delete all entries and pest this code:
<vb:if condition="$thread['thumbnaildisplay'] AND (!$thread[sticky] OR ($vbulletin->options[thread_thumbnails_sticky] == '1'))">
<a href="{vb:link thread, {vb:raw thread}}" id="thread_gotonew_{vb:raw thread.realthreadid}" style="float:right;clear:left;display:block;"><img style="{vb:raw thread.thumbnailstyle}" src="{vb:raw thread.thumbnailurl}"></a>
</vb:if>this is for forums using lan. Righit to left as Arabic
plzz Null Parameter can i translate the mod to Arabic and add it here ?? your permission plzz
Thanks for finding the fix to that. I'm adding a RTL version of the product XML file to the thread.
Yes, you may translate it and I can edit that into the thread as well.
Null Parameter
03-04-2010, 01:04 AM
I'll look into your mod here and see what can be done :)
Thanks. Theoretically it shouldn't be too big of an issue, so don't beat yourself up about it. It should only happen when switching that one particular option, and most people choose one and let it be. I think a workaround might be that, when you change the option, you disable the template caching in vB Optimize, load the forumdisplay once and then re-enable it.
Greight
03-04-2010, 04:27 AM
Can the "user avatar" be placed as the thumbnail in some way?
ThomasR
03-04-2010, 05:53 AM
Thanks a lot of this plugin and all the improvment you did (ACP, thumbnail URL, etc...)
Now, I can switch my forum to vb4! :)
Null Parameter
03-04-2010, 02:09 PM
i meant how i can add Thumbnails to all old threads as in one click no one by one
Proposal = you can make SQL order to make this changes
There's a script that another member wrote in the FAQs section of the thread to help with this.
I'll add the translated version to the thread.
Mike_K
03-04-2010, 05:06 PM
Perfect... and nominated!
shooptek
03-05-2010, 11:56 PM
This is awesome, but I wish there was a way to separate the titles of the thread and the information about it a few pixels away from the thumbnail, as it looks a bit akward. Any clues?
Null Parameter
03-06-2010, 12:06 AM
This is awesome, but I wish there was a way to separate the titles of the thread and the information about it a few pixels away from the thumbnail, as it looks a bit akward. Any clues?
Yep! Use the Thumbnail Style field and add a margin on the thumbnails.
For instance, if you wanted to have your thumbnails be spaced 3 pixels away from the title, you could use:
margin-right:3px;
shooptek
03-06-2010, 12:15 AM
Perfect. Thanks for the help!
matthieugoua
03-06-2010, 11:26 AM
Thank you for this mod, I'd love to know if it was possible to add a mod this system to scroll past the thumbnails in the forumhome
Sorry for my bad english i am french
Null Parameter
03-06-2010, 08:05 PM
Thank you for this mod, I'd love to know if it was possible to add a mod this system to scroll past the thumbnails in the forumhome
Sorry for my bad english i am french
Yes, it would definitely be possible. I'm not sure if I would take the time to make one myself, but just in case, could you find an example somewhere of what you mean by "scroll past the thumbnails", so I know exactly what you mean.
Do they have VBoptimize for Vbullet 4?
Please show me the script or sql command to add by 1 click
)i can add Thumbnails to all old threads as in one click )
Null Parameter
03-06-2010, 10:50 PM
Do they have VBoptimize for Vbullet 4?
Yes, just do a search for it.
Please show me the script or sql command to add by 1 click
)i can add Thumbnails to all old threads as in one click )
Read the first post, it's right in there.
I don't want to manually click to continue. Do you have something AUTOMATIC Process to the next page
Kreyg
03-07-2010, 11:02 AM
I had a question about this. I encourage my users who like to keep up on the new posts to use our "whats new" tab. is there anyway that the thumbnails can be added to that page as well? Is this at all possible?
Greight
03-07-2010, 04:35 PM
Can the "user avatar" be placed as the thumbnail in some way?
Possible?
Hello,
Mod works :)
i have on question how is possible to remove threadicons at the forums where i have enable the mod?
Null Parameter
03-07-2010, 11:45 PM
I don't want to manually click to continue. Do you have something AUTOMATIC Process to the next page
No, I don't have anything else.
I had a question about this. I encourage my users who like to keep up on the new posts to use our "whats new" tab. is there anyway that the thumbnails can be added to that page as well? Is this at all possible?
Yes, that would probably be possible. Something that I'll look into.
Possible?
Yes, I'm sure that would be possible. I'll look into it for a future option.
Hello,
Mod works :)
i have on question how is possible to remove threadicons at the forums where i have enable the mod?
I'm working on an option right now to do exactly that.
Greight
03-08-2010, 02:30 AM
Yes, I'm sure that would be possible. I'll look into it for a future option.
Thank you. I'm waiting impatiently.
I'm working on an option right now to do exactly that.
Thanks im waiting for the new release..
Aceman
03-10-2010, 12:27 AM
Looking forward to the update. Great job Null Parameter - your a life/site saver.
angeljs
03-13-2010, 06:49 PM
Thank you, thank you, thank you! You've no idea how much I was wanting this! :D
i have on question how is possible to remove threadicons at the forums where i have enable the mod?
I'm working on an option right now to do exactly that.
cool! that would make this mod almost perfect
Hi, the mod works fine me, but I have a problem, one is to align the images, to make square, deformed tables either wide or tall. thanks.
Jabong82
03-19-2010, 12:24 AM
Hi is there any way to have it default show on all forums as opposed to entering each individual ID? I have a ton of sub-forums and they are always changing. Thanks again.
Cadellin
03-19-2010, 09:55 PM
Great mod but all my users are having problems when trying to create a new thread - they're being asked to add a link to the thumbnail even when no thumbnail URL box is available even though thumbnails aren't enabled on that board.
I've uninstalled in the meantime but a fix would be great :)
Thanks
Question..
Is possible to add a border around the image?
something like border:2px black; or image border
Thanks
mitch84
03-20-2010, 04:49 AM
Great mod but all my users are having problems when trying to create a new thread - they're being asked to add a link to the thumbnail even when no thumbnail URL box is available even though thumbnails aren't enabled on that board.
I've uninstalled in the meantime but a fix would be great :)
Thanks
in parameter:
Are Thumbnails Required? NO
Thumbnail Source: first image in post
try and says me, thx
gurler
03-20-2010, 07:19 AM
thank you. it works fine.
but if the "first image in post" selected, it's not working on [IMG] which shows external images.
another problem is:
may it get the thumbnail form second post, third post or fourth post or later post if no images or attachments available in first post.
Cadellin
03-20-2010, 11:11 PM
To clarify my settings were:
Are Thumbnails Required: Yes,
Thumbnail Source: User Entered URL
In my forum (where I have activated this mod), it looks like the alignment of the threadthumbnails is wrong. Instead of being aligned to the right, left (or right) from the threadicon, it is placed somewhere in the middle, forcing the rest of the row to be placed on the next line.
I have tested this on a new, non altered style with the Automatic Template Edits enabled.
Does anyone have this one working properly?
Null Parameter
03-25-2010, 09:01 PM
Does anyone have this one working properly?
Yes, there are plenty that have posted saying it is working, and others that I have talked to saying the same thing. For example:
The problem solved, now it's workin like a charm for me. :)
Perfect... and nominated!
This is awesome, but I wish there was a way to separate the titles of the thread and the information about it a few pixels away from the thumbnail, as it looks a bit akward. Any clues?
Hello,
Mod works :)
Null Parameter
03-25-2010, 09:08 PM
Sorry for the really long delay. I've been working on my own stuff, and as I said, I'm doing this all out of the kindness of my heart, because I don't even have a vB4 Forum.
Hi is there any way to have it default show on all forums as opposed to entering each individual ID? I have a ton of sub-forums and they are always changing. Thanks again.
That's something I could definitely look into adding and shouldn't be too difficult.
Great mod but all my users are having problems when trying to create a new thread - they're being asked to add a link to the thumbnail even when no thumbnail URL box is available even though thumbnails aren't enabled on that board.
I've uninstalled in the meantime but a fix would be great :)
ThanksHmmm...... So you're saying that you have Thumbnails Required, but you don't even have thumbnails activated on that forum?
Question..
Is possible to add a border around the image?
something like border:2px black; or image border
Thanks
Yep:
border-width:2px;border-color:black;
thank you. it works fine.
but if the "first image in post" selected, it's not working on [IMG] which shows external images.
another problem is:
may it get the thumbnail form second post, third post or fourth post or later post if no images or attachments available in first post.
Not sure exactly what you mean by external images, I only ever used images hosted on other sites when I did my testing. And I'm sorry to say it, but getting the image from other posts really isn't possible.
In my forum (where I have activated this mod), it looks like the alignment of the threadthumbnails is wrong. Instead of being aligned to the right, left (or right) from the threadicon, it is placed somewhere in the middle, forcing the rest of the row to be placed on the next line.
I have tested this on a new, non altered style with the Automatic Template Edits enabled.
What version of vB4 are you using? It's possible that the templates differed between versions and could mess with the Auto-Edits.
Cadellin
03-27-2010, 07:46 PM
Hmmm...... So you're saying that you have Thumbnails Required, but you don't even have thumbnails activated on that forum?
Yeah - my users are getting a "Thumbnail Required" error when trying to create threads in forums that don't have thumbnails enabled.
Verionia
04-04-2010, 08:35 PM
This is working for me, but I wanted to know if I can increase the height of .threadbit .alt { because there's a big gap from where the image stretches it.
bluecat
04-04-2010, 10:04 PM
In my forum (where I have activated this mod), it looks like the alignment of the threadthumbnails is wrong. Instead of being aligned to the right, left (or right) from the threadicon, it is placed somewhere in the middle, forcing the rest of the row to be placed on the next line.
I have tested this on a new, non altered style with the Automatic Template Edits enabled.
I have the same problem. I've also went through and manually edited it and still have the alignment messed up. I am however using a custom template. Any advice is greatly appreciated. Thanks (I'm also using 4.0.2)
mrt12345
04-09-2010, 05:50 PM
Hello i don't get the table in (Post New Thread) I have a light mod color template from vb. and i did manually install in/editpost/newthread/threadbit/ like in the instructions. any ides thanks
http://www.vbulletin.com/forum/showthread.php?343959-Dark-Styles-for-vBulletin-4.0.2
Cadellin
04-12-2010, 09:41 PM
Any idea what might be causing my problem Null Parameter? I really like the mod but I just can't use it at the moment.
ellinofatsa
04-24-2010, 08:42 AM
<vb:if condition="$show['deletepostoption']">
<form class="vbform block" action="editpost.php?do=deletepost&p={vb:raw postid}" method="post">
<h2 class="blockhead">{vb:rawphrase delete_this_message}</h2>
<div class="blockbody formcontrols">
<h3 class="blocksubhead">{vb:rawphrase delete_message_check_appropriate_option}</h3>
<div class="section">
<vb:if condition="$show['thumbnailurl']">
<div class="blockrow">
<label for="thumbnailurl">{vb:phrase thumbnail_url}:</label>
<input type="text" name="thumbnailurl" id="thumbnailurl" class="primary textbox" value="{vb:raw threadinfo.thumbnailurl}" maxlength="250" />
</div>
</vb:if
hello i cant see the table thumbnail_url
any help ?
Verionia
04-30-2010, 02:14 AM
using 4.03 and can't edit the thumbnail as I could in 4.02
setishock
04-30-2010, 06:17 AM
<a href="http://animeappeal.com/forumdisplay.php?57-Seti-s-World&order=desc" target="_blank">http://animeappeal.com/forumdisplay....rld&order=desc</a>
I got bored at the grind tonight so I added this mod in to my forum. Set it up and set the thumbnail size limits. Bada bing, bada boom, worked as advertised right from the gate.
I did find that by just clicking on edit then save without making any changes works to get the thumbnail to show up in old threads. I was about to scrap my forum but with this little toy to play with I just might keep the doors open.
Nicely done!
tlwwolfseye
04-30-2010, 02:19 PM
What are the manual edits for a custom Theme to make this mod work ? Just installed a new Theme and now it doesn't show the Thumbnails. I would appreciate this Information.
Null Parameter
04-30-2010, 03:16 PM
Any idea what might be causing my problem Null Parameter? I really like the mod but I just can't use it at the moment.
Yes, actually. I just posted a new version with a fix for this. Enjoy!
using 4.03 and can't edit the thumbnail as I could in 4.02I don't have a 4.03 instance to test with, so I can't see what differences might be causing this.
http://animeappeal.com/forumdisplay.php?57-Seti-s-World&order=desc
I got bored at the grind tonight so I added this mod in to my forum. Set it up and set the thumbnail size limits. Bada bing, bada boom, worked as advertised right from the gate.
I did find that by just clicking on edit then save without making any changes works to get the thumbnail to show up in old threads. I was about to scrap my forum but with this little toy to play with I just might keep the doors open.
Nicely done!Very nice to hear! Hope you keep enjoying it.
What are the manual edits for a custom Theme to make this mod work ? Just installed a new Theme and now it doesn't show the Thumbnails. I would appreciate this Information.
Look at the README.
Hi is there any way to have it default show on all forums as opposed to entering each individual ID? I have a ton of sub-forums and they are always changing. Thanks again.
I added an option in the latest version where you can enter 'ALL' in the forums list and every forum will use it.
tlwwolfseye
04-30-2010, 05:44 PM
Ok, thanks.
But for example:
# editpost
* Find
<div class="blockrow">
<label id="editor_message">
I don't have that exactly as described in my "editpost" template. That first part "<div class="blockrow"> i have more often, but with different things after it. What now ?
Null Parameter
04-30-2010, 06:01 PM
Ok, thanks.
But for example:
I don't have that exactly as described in my "editpost" template. That first part "<div class="blockrow"> i have more often, but with different things after it. What now ?
Yeah, Mike_K just upgraded the test board he has setup for me to 4.0.3, and they demolished the templates. I'm gonna have to redo most of the template editing. :mad:
Verionia
05-01-2010, 12:05 AM
fixed now or no?
Null Parameter
05-01-2010, 12:14 AM
fixed now or no?
No, I have to redo a large portion of the template edits, and I have a day job, family, etc. Not sure exactly when I'll find the time.
maidos
05-02-2010, 11:13 PM
First Image In Post: feature doesnt work
when i tried adding the [img] on my thread there isnt any thumbnail at all
started several new threads but with no result
this is using vb default skin, i tried changing option for
User Entered URL
that also wont work
maidos
05-05-2010, 10:40 AM
bump
and also using 4.0.3
Thank you for the mod! The mod is half-working for me... When I just post a new thread, there's no thumbnail. However, if I edit the thread, the thumbnail appears. Do you have any ideas of what I would need to do to make it work? I have it set to take the first image URL from the thread. I am using 4.0.2.
hotfilepro
05-16-2010, 11:51 AM
Hello,
Thank you for this mod.
Can you please develop it more further functions :) ?
For me, I really like this feature : Mouse hovers over thumbnail, then large preview pops up,when you hover over the thumbs, it is automatically shown in FULL or larger SIZE.
https://vborg.vbsupport.ru/external/2010/05/34.jpg
It can't be greater if the product has this !!!
Again, thank you !
Hi,
is there an Option to Displayed Out the Statusicon in the Forums, who the Addon is enabled?
share4vn.com
05-17-2010, 04:47 PM
SHOW THUMBNAILURL IN EDIT THREAD
Edit editpost temp
Find:
<input type="text" name="title" class="primary textbox" id="titlefield" maxlength="{vb:raw vboptions.titlemaxchars}" value="{vb:raw title}" tabindex="1" />
Add below:
<vb:if condition="$show['thumbnailurl']"><br/><br/>
<label for="thumbnailurl">{vb:phrase thumbnail_url}:</label>
<input type="text" name="thumbnailurl" id="thumbnailurl" class="primary textbox" value="{vb:raw threadinfo.thumbnailurl}" maxlength="250" />
</vb:if>
FIX Required Thumbnails function:
maidos
05-18-2010, 06:52 AM
thanks alot, that fixed the issue :)
SHOW THUMBNAILURL IN EDIT THREAD
Edit editpost temp
Find:
<input type="text" name="title" class="primary textbox" id="titlefield" maxlength="{vb:raw vboptions.titlemaxchars}" value="{vb:raw title}" tabindex="1" />
Add below:
<vb:if condition="$show['thumbnailurl']"><br/><br/>
<label for="thumbnailurl">{vb:phrase thumbnail_url}:</label>
<input type="text" name="thumbnailurl" id="thumbnailurl" class="primary textbox" value="{vb:raw threadinfo.thumbnailurl}" maxlength="250" />
</vb:if>
FIX Required Thumbnails function:
steve71
05-30-2010, 02:34 PM
Excellent mod thanks. I was wondering if in a future update we could limit thumbnails to specific user groups as well?
theOZer
05-30-2010, 04:34 PM
Thank you, Null Parameter. This is a priceless mod that greatly enhances any and all forums that have attachments tied to threads. I'm running vB4.0.3 and the mod install went effortlessly, smoothly, and IT WORKS! I set this mod up to display ALL forums, First Attachment, and, from the get go, it started displaying the thumbnails.
Thank you, thank you, thank you, Null Parameter.
RedFoxy
05-30-2010, 07:52 PM
I fixed the install file to go with lastes vb 4.x
Globe
06-02-2010, 07:42 PM
hmm there are still the forum icons is there anyway to remove that?
Globe
06-03-2010, 08:28 PM
whe i post a thread with a image it doesnt show so i have to edit the post and after that (create new post>create>edit) it show up why?
Dark_Wizard
06-07-2010, 01:55 PM
There is a problem with your preg_match selecting "First Image In Post", some pic's don't show and this is the properties of the blank images:
http://www.imagebanana.com/img/54s2q80t/blah.png[/IMG][/URL]%20[URL=
This is based on how the poster adds the image.
Aceman
06-08-2010, 11:38 AM
The addon is working fine on my site. However, I really need a way to turn OFF Threadicons when the thumbnails are used. It would reallly make the layout of my site look alot nicer. I updated my site to the latest version today and all well.. however that option isn't available.
Null mentioned a "Replace threadicon" which would be ideal!!
Thanks
Dark_Wizard
06-08-2010, 11:59 AM
The addon is working fine on my site. However, I really need a way to turn OFF Threadicons when the thumbnails are used. It would reallly make the layout of my site look alot nicer. I updated my site to the latest version today and all well.. however that option isn't available.
Null mentioned a "Replace threadicon" which would be ideal!!
Thanks
Working fine? How are you using this, url or first post? Just went to your site and I see no images in "3D Gallery" just a box with the x in it.....turning off thread icons is simple and I will post a quick way to do it very shortly.
Dark_Wizard
06-08-2010, 12:18 PM
To turn off Thread Icons do the following in threadbit template:
find:
<vb:if condition="$show['threadicon']">
change to this:
<vb:if condition="$show['threadicon'] && !$thread['thumbnail']">
Tested and working fine.
Aceman
06-08-2010, 01:26 PM
You must be registered to see the images.
Dark_Wizard
06-08-2010, 01:28 PM
You must be registered to see the images.
Then this hack needs more work, nothing should show if the user isn't registered....
Aceman
06-08-2010, 01:46 PM
You know.. I think the icon I need to hide is the thread status icon.. the one that shows if it's a new or old thread. I'm to figure out if it's possible to remove that.
Additionally, I may try and add a conditional that if you are unregistered, then threadthumbnails don't display.
Winter Sonata
06-08-2010, 02:34 PM
will this take effect to the older threads ? or only will apply to the new ones ?
Dark_Wizard
06-08-2010, 02:54 PM
will this take effect to the older threads ? or only will apply to the new ones ?
Can you be more specific? Are you asking about the threadicons I added above?
Dark_Wizard
06-08-2010, 02:55 PM
You know.. I think the icon I need to hide is the thread status icon.. the one that shows if it's a new or old thread. I'm to figure out if it's possible to remove that.
Additionally, I may try and add a conditional that if you are unregistered, then threadthumbnails don't display.
I'll post working code as soon as my damn server is backup... :mad:
Dark_Wizard
06-08-2010, 07:38 PM
You know.. I think the icon I need to hide is the thread status icon.. the one that shows if it's a new or old thread. I'm to figure out if it's possible to remove that.
Additionally, I may try and add a conditional that if you are unregistered, then threadthumbnails don't display.
Here you go...in threadbit do the following:
find:
<a class="threadstatus" rel="vB::AJAX" title="
<vb:if condition="$show['threadcount']">
{vb:rawphrase have_x_posts_in_thread_last_y, {vb:raw thread.dot_count}, {vb:raw thread.dot_lastpost}}
</vb:if>
"></a>
change to this:
<vb:if condition="!$thread['thumbnail']"><a class="threadstatus" rel="vB::AJAX" title="
<vb:if condition="$show['threadcount']">
{vb:rawphrase have_x_posts_in_thread_last_y, {vb:raw thread.dot_count}, {vb:raw thread.dot_lastpost}}
</vb:if>
"></a></vb:if>
james shadle
06-08-2010, 09:23 PM
Hello,
I'm new at this.
How do I run the script to repopulate the thumbnails after switching to "first image in post"?
Thanks!!!
Dark_Wizard
06-08-2010, 11:25 PM
There is a script that is posted to do this for you otherwise you need to edit every first post to get it to work....
james shadle
06-09-2010, 01:37 AM
Thanks.
I saw the script. I just don't know how to run it.
James
martin1
06-11-2010, 03:09 PM
After upgrade from vbulletin 4.0.2 to 4.0.3 pl1 , hack showed only thumbnails, on thread edit there were no edit link to the picture line, so I unninstalled it and import it again, but now nothing happening!
On 4.0.2 I used 3.0.0. version that worked fine.
Daniel_HBK
06-13-2010, 04:22 PM
WOW great hack !! , Installed + 5 Stars + nominated MOTM
can you make it for vbadvanced news module ?
alexm
06-15-2010, 06:20 AM
I really like this mod and have been using it for a while, but I was wondering if it was possible to display either attachment or, if no attachment, then an [img]
e.g. if attachments are present then it uses the first one of them, but if no attachments are present it uses the first [img] if present?
That would be a really handy addition!
Alex
martin1
06-21-2010, 08:47 PM
Well now really official -- version 3.1 of thread thumbnails don't works -- it's tested on clear vbulletin 4.0.3.
I used clean installation since it don't know why it don't works in my forum since I upgrade it.
Those are the problems (I just installed the hack from acp as it says in readme):
a) once you define link in thread thumbnail , row is not visible anymore on edit post action!
b) when you set link to thumbnail, nothing is showed
c) all what is visible is the default thumbnail on each thread ( if it's set in admin panel)
rolfw1
06-24-2010, 07:11 PM
To turn off Thread Icons do the following in threadbit template:
find:
<vb:if condition="$show['threadicon']">
change to this:
<vb:if condition="$show['threadicon'] && !$thread['thumbnail']">
Tested and working fine.
That doesn't work for me, still showing the thread icons, any ideas why?
Example
http://www.thamesvalleybirds.co.uk/bird-photos-general/
Dark_Wizard
06-26-2010, 10:32 PM
That doesn't work for me, still showing the thread icons, any ideas why?
Example
http://www.thamesvalleybirds.co.uk/bird-photos-general/
Sorry for the delay, been busy with my own mods. I will look at it and get back to you.
alexm
06-27-2010, 10:39 AM
That doesn't work for me, still showing the thread icons, any ideas why?
Example
http://www.thamesvalleybirds.co.uk/bird-photos-general/
Do you mean the actual thread status icons?
On my forum I have it so that if there is a thumbnailurl set then it shows the thumbnail, otherwise it shows the standard thread status icon.
See here:
http://www.thestalkingdirectory.co.uk/forumdisplay.php?21-Classifieds
To do this, edit threadbit template and change:
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" title="
<vb:if condition="$show['threadcount']">
{vb:rawphrase have_x_posts_in_thread_last_y, {vb:raw thread.dot_count}, {vb:raw thread.dot_lastpost}}
</vb:if>
"></a>
to:
<!-- status icon block -->
<vb:if condition="!$thread['thumbnailurl']">
<a class="threadstatus" rel="vB::AJAX" title="
<vb:if condition="$show['threadcount']">
{vb:rawphrase have_x_posts_in_thread_last_y, {vb:raw thread.dot_count}, {vb:raw thread.dot_lastpost}}
</vb:if>
"></a>
</vb:if>
Alex
Daniel_HBK
06-27-2010, 08:23 PM
i need to edit thread to appear :( this is after installization
rolfw1
06-28-2010, 04:32 PM
Thanks Dark Wizard, I appreciate people have their own forums to run.:)
Thanks Alex, tried that, but thumnails then disappeared, what I have at the moment is:
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX"
<vb:if condition="$show['threadcount']">title="{vb:rawphrase have_x_posts_in_thread_last_y, {vb:raw thread.dot_count}, {vb:raw thread.dot_lastpost}}"</vb:if>></a>
alexm
06-28-2010, 06:20 PM
Thanks Alex, tried that, but thumnails then disappeared
Looking at your source it should work... basically you need to put the tags around the part of the template that you want to disappear if a thumbnail is specified.
<vb:if condition="!$thread['thumbnailurl']">
----bit that makes the status icon show----
</vb:if>
Deleting the <a class="threadstatus"..... part on your site using firebug works, so it should work in theory...
e.g. here I have tested by removing the top two status icons, the third is highlighting the part of the source responsible for displaying the status icon...
rolfw1
06-28-2010, 07:10 PM
Nope, if I add the <vb:if condition="!$thread['thumbnailurl']"> before and the </vb:if>
after the block, I keep the thread icons, but lose the thumbnails.
I'm obviously doing something wrong, but have to say that I'd sort of got used to the old style code and this new code is confusing.
Daniel_HBK
06-29-2010, 02:09 PM
i need to edit thread to appear :( this is after installization
please help
lionelng
07-01-2010, 08:44 AM
Does it work for 4.04? Because after I installed, I can't see any thumbnails at all. The template edits didn't work for me too because I can't find those lines I'm supposed to locate in the default template. Any help would be deeply appreciated. Thanks!
rolfw1
07-01-2010, 04:05 PM
I have it running in 4.0.4, works well, there is a script you need to run which is mentioned on a previous page, which will update all of the existing threads.
lionelng
07-02-2010, 05:20 AM
I have it running in 4.0.4, works well, there is a script you need to run which is mentioned on a previous page, which will update all of the existing threads.
I've executed the script but i'm still seeing no thumbnails... wondering what's wrong here.
Daniel_HBK
07-06-2010, 04:16 AM
hi , i made edits to use it in recent threads module in vBadvanced but images not shown , i thing i must make a hook , any help ?
http://img85.imageshack.us/img85/8479/ddddddddm.jpg
ZomgStuff
07-09-2010, 02:40 AM
Awesome mod, this is perfect!
Is there a way to change which attachment is the first one? I'd like to re-arrange some attachments from old threads to have the thumbnail be the one I want.
dr.tawy
07-10-2010, 10:03 AM
i need to edit thread to appear :( this is after installization
same here
there is a problem
even newly created threads have to be edited
i am working on 4.0.3
Thanks
Xtrigit
07-15-2010, 04:59 PM
Could anyone update it for 4.0.5 please?
Thanks
123_y_321
07-27-2010, 03:35 AM
Great mod.
Is there anyway you can add 1 more options which is combine all 3 "thumbnail source"?
My members enter images in all 3 ways. This make me headache; I cant decide which option should I use.
ps: if you need vbb 4.0.5 to test, lets me know.
GONUMBER6
07-29-2010, 12:39 PM
Great mod, is exactly what I needed for our board "Bulldogs in need of rescue or adoption". Now there is a bulldog picture in front of each thread, and we can start doing more in this area and save some bulldogs! Thank you for this mod!!! We only added one today, but now we can focus more on this. Check it out if you want. The install was a piece of cake!
http://www.englishbulldognews.com/forums/forumdisplay.php?7-Dogs-Needing-Rescue-or-Adoption-Available-Bulldogs-for-Rescue!
cavebox
08-01-2010, 12:15 PM
Unfortunately i also have to edit the post first before the thumbs are showing
Daniel_HBK
08-01-2010, 06:33 PM
any one can help me pleaseeeeeeeeeeeee ?
DaPike
08-04-2010, 08:37 AM
Hi,
is this mod also workin on vB 3.8.2??
thx
DaPike
fxwoody
08-12-2010, 09:34 AM
Well seems like it doesn't work for 4.0.6.
I can't see any thumbnail on screen either "user Entered URL" nor "first image in post" :(
I tried to find the "editpost" in question from templates but, no good results as it's not at all the same codings.
Hopefully you guys will find a solution because this mod is super grate:(
CrystaStarLight
08-13-2010, 12:44 PM
4.0.6 didn't work for me either. I could only get a thumbnail to show if I edited the first post in the thread, and when it did show, the thumbnail showed up way on the right side of the threadbit, the opposite side that it shows in the screen shots. I'm not using custom templates.
fxwoody
08-14-2010, 04:04 PM
4.0.6 didn't work for me either. I could only get a thumbnail to show if I edited the first post in the thread, and when it did show, the thumbnail showed up way on the right side of the threadbit, the opposite side that it shows in the screen shots. I'm not using custom templates.
Well, makes 2 of us! Too bad because it's a great Mod for the members :(
Easier search and makes the thread list more complete
Come on guys, find a solution PLS :D
rolfw1
08-14-2010, 05:12 PM
OK, doesn't work with the 4.6 update for me either, would be nice to get it up and running again, one of the best mods around. :)
Very strange, as on my sister forum which has been upgraded to vb4.0.6, we have an old version v2.0 and it still works.
midnz
08-14-2010, 07:09 PM
Works for me on 4.0.6 upgrade from 4.0.5. Previous thread thumbnails show as they should. I've just now tested a new thread with attachment and it also displays properly.
rolfw1
08-14-2010, 07:25 PM
I went from 4.0.4 and doesn't show.
Which version are you using?
fxwoody
08-14-2010, 07:38 PM
Works for me on 4.0.6 upgrade from 4.0.5. Previous thread thumbnails show as they should. I've just now tested a new thread with attachment and it also displays properly.
Well midnz, you need to YouTube how you made it work because some of us are in the doodoo with it :(
Had nothing but bad results with it!!!
rolfw1
08-14-2010, 07:51 PM
Just went into threadbit template and manually added
{vb:raw thread.thumbnail}
after
<!-- status icon block -->
Works now.:)
midnz
08-14-2010, 07:58 PM
I went from 4.0.4 and doesn't show.
Which version are you using?
Well midnz, you need to YouTube how you made it work because some of us are in the doodoo with it :(
Had nothing but bad results with it!!!
I upgraded from 3.6.8 to 3.8.6 to 4.0.5 and it stopped working and so I did a fresh install of Thread Thumbnails 3.1.0 and that worked on 4.0.5. I upgraded 4.0.5 to 4.0.6 and it still works fine. I'm not sure what else to tell you. I don't think I did anything special.
Just in case it matters:
Web Server: Apache v2.2.15 (cgi-fcgi)
PHP: 5.3.2
MySQL: 5.1.48
CrystaStarLight
08-14-2010, 11:00 PM
Just went into threadbit template and manually added
{vb:raw thread.thumbnail}
after
<!-- status icon block -->
Works now.:)
I tried that too but no luck for me. I did notice that if I set the options to use the "first attachment" for the thumbnail and make it "before the threadicon", then the thumbnails will show when I make a new thread, but only if I select those options. If I make it "after the threadicon", or use the "first [img] tag" it will not work.
My users are not using attachments though, it would take up too much server space.
I did a clean new install on 4.0.6, I didn't upgrade.
I know your not the developer, just leaving this here for the developer to look at, or anyone that thinks they can help. Thank you!
baboo
08-15-2010, 01:34 AM
Plz some one solve this problem for ous, and make it work for 4.0.6.
rolfw1
08-15-2010, 06:08 AM
I tried that too but no luck for me. I did notice that if I set the options to use the "first attachment" for the thumbnail and make it "before the threadicon", then the thumbnails will show when I make a new thread, but only if I select those options. If I make it "after the threadicon", or use the "first [img] tag" it will not work.
I agree, it's not an ideal solution, but for someone who had it working before an upgrade tp 4.0.6, this should at least get the thumbnails showing again.
Strange thing is, that if I set the thumbnail for after the post icon, it shows two thumbnail, so the other code which is embedded obviously works to a degree.
fxwoody
08-15-2010, 01:00 PM
Ok i managed to make it work lol tho, it does not come up automatically when making a new thread!?!? Only when editing the post :(
https://vborg.vbsupport.ru/external/2010/08/24.jpg
Now, from the instructions, i didn't added the "{vb:raw thread.thumbnail}" in the threadbit as it was posting 2 thumbnails. Even with all the required info and mods in the templates, the darned thumbnail doesn't show like it is suppose to.
As for the options, everything is set to "YES" and we can only use the "User Entered URL" since the other options don't work :(
This one is turning out to be a major challenge in V4 lolll
Ain't there a brain that could resolve this puzzle???
I'll keep posting if i find other info......unless Null Parameter come up with a new update????
Globe
08-19-2010, 11:09 AM
it would be work is is there any new update... a few weeks ago i tried the old version and it worked perfectly but i dint have the old version :(
rolfw1
08-19-2010, 03:16 PM
Ok i managed to make it work lol tho, it does not come up automatically when making a new thread!?!? Only when editing the post :(
https://vborg.vbsupport.ru/external/2010/08/24.jpg
Now, from the instructions, i didn't added the "{vb:raw thread.thumbnail}" in the threadbit as it was posting 2 thumbnails. Even with all the required info and mods in the templates, the darned thumbnail doesn't show like it is suppose to.
As for the options, everything is set to "YES" and we can only use the "User Entered URL" since the other options don't work :(
This one is turning out to be a major challenge in V4 lolll
Ain't there a brain that could resolve this puzzle???
I'll keep posting if i find other info......unless Null Parameter come up with a new update????
There is a script in the first post to add thumbnails from existing posts, although I didn't need that, as I've had previous versions running.:) To prevent the two thumbnails showing, I selected thumbnail before threadicon.
http://www.thamesvalleybirds.co.uk/bird-photos-general/ Shows a page with it working.
fxwoody
08-20-2010, 03:40 PM
Tks rolfw1 for the input my friend but even tho, the only way it can show...from my site... it when i edit the post! As for the script, i'm in total darkness as to how i have to run it and from where! Some advise could help here ;)
Tks
rolfw1
08-20-2010, 03:56 PM
See this thread for getting the thumbnails to show https://vborg.vbsupport.ru/showpost.php?p=1911387&postcount=154 , not sure about running the script, as I didn't need to do it, but replying in that thread may get you the answer.
fxwoody
08-20-2010, 04:19 PM
Lollllll are you kidding me! hihihi 2 thumbs up bro!!! That made it work A1!!
So, looks like our old 3.8 is still alive in the 4.0.6 after all ;)
Thanks 1st image in post work all by it self now, just have to figure out how to have that script to work now :)
Cheers
fxwoody
08-20-2010, 08:57 PM
Ok, i modified my set up in my V4.0.6 and with codes and reference that i found in here and...it works OK! Lolll
Here's the changes i made (Tks to every one who has posted Codes and ideas, as none of these are my creation)
These changes have to be done in every skins that you have in order to make it work. Also, the option for "First Image In Post" and "First Attachment" are working well but got stuck with the "User entered URL" and this one is not showing properly :(
Still, it works as it should in V4.0.6
Now, replace or copy these in the templates:
In the Threadbit:
Find:
<vb:if condition="$show['threadicon']">
<img src="{vb:raw thread.threadiconpath}" alt="{vb:raw thread.threadicontitle}" border="0" />
</vb:if>
Paste this after:
<!----autothumbnail--->
<vb:if condition="!$thread['thumbnailurl']">
<a class="threadstatus" rel="vB::AJAX" title="
<vb:if condition="$show['threadcount']">
{vb:rawphrase have_x_posts_in_thread_last_y, {vb:raw thread.dot_count}, {vb:raw thread.dot_lastpost}}
</vb:if>
"></a>
</vb:if>
<!----/autothumbnail--->
In the template "thread_thumbnail_threadbit"
You should have this code in it:
<vb:if condition="$thread['thumbnaildisplay'] AND (!$thread[sticky] OR ($vbulletin->options[thread_thumbnails_sticky] == '1'))">
<a href="{vb:link thread, {vb:raw thread}}" id="thread_gotonew_{vb:raw thread.realthreadid}" style="float:left;clear:right;display:block;margin:2px;"><img style="{vb:raw thread.thumbnailstyle}" src="{vb:raw thread.thumbnailurl}"></a>
</vb:if>
In the plugin manager : New Thread - Save Thumbnail, Datamanager >>> "Modify with this" :
if ($type == 'thread')
{
if($vbulletin->options['thread_thumbnails_thumbnail_source'] == '0')
{
$dataman->setr('thumbnailurl', htmlspecialchars_uni($post['thumbnailurl']));
}
if($vbulletin->options['thread_thumbnails_thumbnail_source'] == '2')
{
preg_match('/\[img\](.*?)\[\/img\]/i',$post['message'],$matches);
$dataman->setr('thumbnailurl', $matches[1]);
}
}
As for the rest of the normal template edit from the main post, i haven't modify anything from it.
The options in the "Thread Thumbnails Options" are all set to yes and the "Thumbnail Location" works fine in both before or after the Threadicon.
Also, if you want to re-size the thumbnail you can use this:
max-width:40px;max-height:60px;border: 1px ridge;
and change the px to the one you would like to see.
If no images are in the posts, i made myself a small pic that i FTP to the images root of my site and this part of it worked OK too ;)
EX: /vb4/images/misc/test-posbit.gif
Hope it will help a few of you guys that wanted this cool plugin :)
rolfw1
08-20-2010, 09:24 PM
Well done, that should help a lot of people.:)
fxwoody
08-20-2010, 10:44 PM
Well done, that should help a lot of people.:)
Tks rolfw1 ;) Tho now i made a doodoo in my database with the script trying to get all the thumbnails to show! lolll
ohhh well, when it's not one thing it's another! :rolleyes:
By the way, i got this from the error:
Database error in vBulletin 4.0.6:
Invalid SQL:
SELECT node.nodeid, node.url, node.parentnode, node.nodeleft, node.noderight,
node.setpublish, node.publishdate, info.title, node.permissionsfrom, node.hidden, COUNT(child.nodeid) AS children,
SUM(CASE WHEN (child.setpublish > 0 AND child.publishdate < 1282347755 AND child.contenttypeid <> 17) THEN 1 ELSE 0 END) AS publish_count
FROM cms_node AS node
LEFT JOIN cms_node AS child ON child.parentnode = node.nodeid AND child.new != 1
LEFT JOIN cms_nodeinfo AS info ON info.nodeid = node.nodeid
WHERE (node.contenttypeid = 17)
GROUP BY node.nodeid, node.url, node.parentnode, node.nodeleft, node.noderight,
node.setpublish, node.publishdate, info.title, node.permissionsfrom, node.hidden HAVING COUNT(child.nodeid) > 0
ORDER by node.nodeleft;;
MySQL Error : Got error 28 from storage engine
Error Number : 1030
Request Date : Saturday, August 21st 2010 @ 01:42:35 AM
Error Date : Saturday, August 21st 2010 @ 01:42:35 AM
Script : http://wood
Referrer :
IP Address :
Username : woody
Classname : vB_Database
MySQL Version : 5.0.91-community
fxwoody
08-21-2010, 12:39 AM
Ok! DO NOT RUN THE SCRIPT!!!! Server load went crazy and almost got cut off!
baboo
08-22-2010, 12:20 PM
Hi fxwoody, does is it work well with you in 406?
fxwoody
08-22-2010, 07:09 PM
It works well in every forums with the automatic 1 st image, tho, i tried the script from megamoose and ended up with a server load that almost busted my account! So install it ok! But do not use the script! ;)lolll
As for all the other images in the posts, only way i founded to get them to show is by edit and save each of them! Long task if you have tons of them!!! loll
Cheers
baboo
08-23-2010, 12:47 PM
OMG, I will pay to any one who can install it for me and make it work.
It's very important for my forum.
baboo
08-23-2010, 01:27 PM
Is there someone can update it for us?
how to fix it?
http://img687.imageshack.us/img687/3766/thn.png
fxwoody
08-24-2010, 11:59 AM
If you guysfallow this it should work ok for you :
https://vborg.vbsupport.ru/showpost.php?p=2087058&postcount=145
@S!p
What version are u using and did you adjust any of the templates?
baboo
08-24-2010, 02:01 PM
thank you very much, it working now...
4.0.6 PL1
There is nothing changed manually.
I try on default style and same.
ChaFF
08-25-2010, 08:42 PM
Installed, nominated. Needed feature.
for some reason works fine on links, and attachments, but not when i choose "first image in post" :(
my mistake. Already running.
I have two questions.
What do I do that visitors viewed the thumbnails in the old topics?
Is it possible to show the image full-size mouse over the thumbnail?
fxwoody
08-28-2010, 12:31 PM
@ S!p only way to get the old topic to show is to edit each post and save, this way it bring up the thumbnail in the threadlist :( As for the mouse-over, i'm currently playing with some codes to try that out! I will post some results if it works ;)
@ChaFF Did you do the changes that i posted in here: https://vborg.vbsupport.ru/showp...&postcount=145 ??
baboo
09-02-2010, 04:35 PM
Hi fxwoody,
I have a problem, there is two threadicon!
chech this link: http://www.world-gd.com/forumdisplay.php?4
Thank you very much.
Chris Ober
09-04-2010, 02:13 PM
We currently have a problem where every thread we move, shows an attachment thumbnail that's not related to the post at all and I can't figure out where in the templates it's adding it from to remove it. The thumbnail even shows for posts that don't include an image or attachment. I removed one for an image that no longer existed on the server and a different thumbnail took it's place. VB 4.0.4 on Linux, PHP 5.2.13, mysql 5.0.91, Apache 2.2.15
Example forum showing the issue:
http://www.birdphotographers.net/for...phy-Discussion
Any assistance will be greatly appreciated.
Thanks,
Chris
CrystaStarLight
09-08-2010, 09:00 PM
Thank you fxwoody! Your fix worked for me on a 4.0.6 version. =)
This is a cool hack! I'm marking installed.
krustyx
09-09-2010, 03:36 PM
I have a problem here.
First image in post selected.
When posting a message, the image doesnt show.
I have to go back in the thread, edit, save, then the image is showing.
Any fix for this? Thank you
Twikitero
09-10-2010, 06:29 PM
Please help, I have vBulletin 4.0.6 PL1, can not find any code in any of the templates that are required to edit
Anyone know tell me that I have to change templates in vBulletin 4.0.6 PL1
Thanks
krustyx
09-10-2010, 06:46 PM
I have a problem here.
First image in post selected.
When posting a message, the image doesnt show.
I have to go back in the thread, edit, save, then the image is showing.
Any fix for this? Thank you
https://vborg.vbsupport.ru/showpost.php?p=1911387&postcount=154
presyce
09-11-2010, 06:31 PM
is it possible to make this available to only one forum section?
CrystaStarLight
09-12-2010, 10:28 PM
Wouldn't simply resizing the images to thumbnails make the forumdisplay.php page load slowly, or does this generate actual images in thumbnail size?
I wish the developer could add Woody's fixes in his post for 4.0.6 to the main page.
struff
09-12-2010, 10:58 PM
I can't seem to get this working. It installed perfectly and I made sure that it was turned on in the ACP options. But I don't get any input box for a thumbnail URL and the auto-thumbnail settings don't give me anything either.
I am using vB 4.0.6 and the default vB 4 style.
Thanks.
marianoblesa
09-15-2010, 03:16 AM
Originally Posted by krustyx https://vborg.vbsupport.ru/external/2011/11/11.gif (https://vborg.vbsupport.ru/showthread.php?p=2095886#post2095886)
I have a problem here.
First image in post selected.
When posting a message, the image doesnt show.
I have to go back in the thread, edit, save, then the image is showing.
Any fix for this? Thank you
https://vborg.vbsupport.ru/showpost.php?p=1911387&postcount=154
This is for VB 3.8, this does not apply to VB4.
Please Help
bioload
09-15-2010, 04:37 AM
Great Mod...seems to work right out of the gate 4.0.6, once I edited one if my older posts.
Is there a way I can eliminate the break in the table
https://vborg.vbsupport.ru/external/2010/09/6.jpg
struff
09-16-2010, 03:30 AM
Anyone???
I can't seem to get this working. It installed perfectly and I made sure that it was turned on in the ACP options. But I don't get any input box for a thumbnail URL and the auto-thumbnail settings don't give me anything either.
I am using vB 4.0.6 and the default vB 4 style.
Thanks.
Thanks again.
krustyx
09-23-2010, 03:49 PM
Originally Posted by krustyx https://vborg.vbsupport.ru/external/2011/11/11.gif (https://vborg.vbsupport.ru/showthread.php?p=2095886#post2095886)
I have a problem here.
First image in post selected.
When posting a message, the image doesnt show.
I have to go back in the thread, edit, save, then the image is showing.
Any fix for this? Thank you
This is for VB 3.8, this does not apply to VB4.
Please Help
What's the solution then? :)
Taurus1
09-24-2010, 06:36 AM
Great mod mate. Can't be without it. I upgraded to vb4 and installed this version. But some thumbnails show and some just won't. Is there something I can do please. Because it really looks terrible right now.
Thanks!
marianoblesa
09-27-2010, 01:42 AM
Database error in vBulletin 4.0.7:
Invalid SQL:
SELECT
IF(votenum >= 1, votenum, 0) AS votenum,
IF(votenum >= 1 AND votenum > 0, votetotal / votenum, 0) AS voteavg,
post.pagetext AS preview,
thread.threadid, thread.title AS threadtitle, thread.forumid, pollid, open, postusername, postuserid, thread.iconid AS threadiconid,
thread.dateline, notes, thread.visible, sticky, votetotal, thread.attach, thread.lastpost, thread.lastposter, thread.lastposterid, thread.lastpostid, thread.replycount, IF(thread.views<=thread.replycount, thread.replycount+1, thread.views) AS views,
thread.prefixid, thread.taglist, hiddencount, deletedcount,
user.usergroupid, user.homepage, user.options AS useroptions, IF(userlist.friend = 'yes', 1, 0) AS isfriend
, NOT ISNULL(subscribethread.subscribethreadid) AS issubscribed
, deletionlog.userid AS del_userid, deletionlog.username AS del_username, deletionlog.reason AS del_reason
, threadread.readtime AS threadread
, threadredirect.expires
, attachment.thumbnail_filesize AS thumbsize , MIN(attachment.attachmentid) AS attachmentid , thread.thumbnailurl AS thumbnailurl
FROM thread AS thread
LEFT JOIN user AS user ON (user.userid = thread.lastposterid)
LEFT JOIN userlist AS userlist ON (userlist.relationid = user.userid AND userlist.type = 'buddy' AND userlist.userid = 1)
LEFT JOIN deletionlog AS deletionlog ON(thread.threadid = deletionlog.primaryid AND deletionlog.type = 'thread')
LEFT JOIN subscribethread AS subscribethread ON(subscribethread.threadid = thread.threadid AND subscribethread.userid = 1 AND canview = 1)
LEFT JOIN threadread AS threadread ON (threadread.threadid = thread.threadid AND threadread.userid = 1)
LEFT JOIN post AS post ON(post.postid = thread.firstpostid)
LEFT JOIN threadredirect AS threadredirect ON(thread.open = 10 AND thread.threadid = threadredirect.threadid)
LEFT JOIN attachment as attachment ON(attachment.postid = thread.firstpostid)
WHERE thread.threadid IN (0,23210,31961,27757,22315,25230,23231,32522,32523 ,23115,24174,25080,21699,20116,22944,21646,20052,1 8701) GROUP BY thread.threadid
ORDER BY sticky DESC, lastpost DESC;
MySQL Error : Unknown column 'attachment.thumbnail_filesize' in 'field list'
Error Number : 1054
Request Date : Monday, September 27th 2010 @ 04:40:07 AM
Error Date : Monday, September 27th 2010 @ 04:40:08 AM
Script : http://www.universodivx.net/forumdisplay.php?7-Series-Incompletas-(17-122)VSa
Referrer : http://www.universodivx.net/foro.php
IP Address : xxx
Username : marianoblesa
Classname : vB_Database
MySQL Version : 5.0.91-enterprise-gpl-log
Mike_K
09-27-2010, 06:43 AM
I have had also an error after upgrading to 4.07.
So I overwrote the product again with the version 3.1 and it works perfect.
@Null Parameter: Please feel free to use the test installation furthermore. It's now on 4.07
Null Parameter
09-27-2010, 06:36 PM
I suppose I should finally reply, seeing as how many people have taken a liking to this mod.
First off, I appreciate all the work people have been doing to keep this working for newer versions of vB4. It's great to see this mod continue to get attention, despite my absence. Thank you very much.
Now, on to what is up with me. This is going to sound mildly selfish, but the truth is that I have no need to continue the development of this mod. I, myself, do not own an instance of vB4, and therefore all improvements are entirely unneeded for myself and my time is almost entirely "lost". The reason that this mod was originally updated to support vB4 was because I received many generous offers for compensation to do so. As it turns out, all of those offers fell through, save one. So again, my time was almost entirely "lost".
I'm very glad that so many of you enjoy this mod, and again I appreciate all the people that have helped me and others in developing it. I'll most likely take the time to update the mod with the updates that many of you have submitted in this thread, so that others can make use of it as well and that work isn't lost in the aether. But after that, unless something changes, I probably won't be making any more updates. If anything, I may create an additional "Pro"/non-free version of the mod alongside this one with more features and updates, so that I can actually justify my time away from my family/job/websites.
CrystaStarLight
09-27-2010, 08:28 PM
Null Parameter, I'd be willing to purchase a mod like this if it isn't too expensive once I need an update. Hopefully if it is purchasable the thumbnails can show up in the search. Can you give a link to the website you'd do it on if you decide to do that?
Great Mod...seems to work right out of the gate 4.0.6, once I edited one if my older posts.
Is there a way I can eliminate the break in the table
https://vborg.vbsupport.ru/external/2010/09/6.jpg
Hi, I solved this by going to the template threadbit, and finding:
<!-- threadstats -->
<vb:if condition="!$show['notificationtype']">
<ul class="threadstats td alt" title="<vb:if condition="$thread['dot_count'] >
..and adding style="height:87px;" in the <ul> The height you give depends on the height of your thumbnails.
<!-- threadstats -->
<vb:if condition="!$show['notificationtype']">
<ul style="height:87px;" class="threadstats td alt" title="<vb:if condition="$thread['dot_count'] >
speaksell
10-11-2010, 02:16 AM
Hi I have a rss feed thats posts to my Vbulletin the thumbnails do not work automatically I need to hit edit on th epost for the thumbnail to appear... Can someone please help Thank you in advance
Terrona
10-13-2010, 08:46 AM
Hi I have a rss feed thats posts to my Vbulletin the thumbnails do not work automatically I need to hit edit on th epost for the thumbnail to appear... Can someone please help Thank you in advance
I have the same problem
V4.0.7
Let's see if we get solution
sonlaol
10-14-2010, 12:38 AM
I have the same problem
V4.0.7
Let's see if we get solution
me too, how fix?
vietfreefun
10-16-2010, 01:40 PM
Thumbnail URL show on new thread page but do not show in edit post, I am not able to change new thumbnail for thread in case wrong thumb
rolfw1
10-16-2010, 02:32 PM
If anything, I may create an additional "Pro"/non-free version of the mod alongside this one with more features and updates, so that I can actually justify my time away from my family/job/websites.
I wouldn't be averse to paying a reasonable price for a supported and updated version, as my forum relies on its photo presentation. Please keep us advised.
If you need access to vb4, you can always use mine.
210665
10-24-2010, 03:29 PM
This product simply does not work correctly for me in VB 4.0.7.
Must always manually edit all the threads, there is a Adoon that runs well under vb4.0.7
----------------------------------------------------------------------------------------------------------------------
Dieses Produkt läuft einfach nicht richtig bei mir unter VB 4.0.7.
Muss immer alle Threads händisch bearbeiten, gibt es ein Adoon das auch gut läuft unter vb4.0.7
Thanks
Fusion2
10-31-2010, 11:45 AM
Would be cool if this worked for BLOGS. Unlike CMS, the blog entries doesnt organize the photo thumbnail or move text to the side of the photo. So your stuck with a fullsized photo.
downloadfound
11-10-2010, 02:32 AM
This product simply does not work correctly for me in VB 4.0.7.
Must always manually edit all the threads, there is a Adoon that runs well under vb4.0.7
Thanks
I have the same problem!!!! It looks great, but it does not show up unless you go back and edit the post. :(
gurler
11-11-2010, 06:45 AM
hello. very good mod. thank you.
i am using rss feed reader to post new thread for a forum on my board. but when the thread is coming via rss feed, images are ok on first message but thumbnails are not shown in forumdisplay.. at this step i must edit post for update the thumbnail.
is there any options to make auto update image thumbnails ? or rss feed plugin ?
thank you very much
Brandon Sheley
11-13-2010, 03:14 PM
hello
could we have an option or attachment or first img tag?
vs one or the other :)
thx for the mod, I like it :)
mgurain
11-13-2010, 03:58 PM
Thumbnail URL show on new thread page but do not show in edit post, I am not able to change new thumbnail for thread in case wrong thumb
Same problem ?
downloadfound
11-15-2010, 11:24 PM
Bump, I really like this mod and am willing to donate if the OP can fix it for vb4
dcuellar
11-20-2010, 02:28 AM
Any chance you add the thread thumbnail above the Recent Threads forum block?
dcuellar
11-26-2010, 02:00 PM
I have the same problem!!!! It looks great, but it does not show up unless you go back and edit the post. :(
I tried this (https://vborg.vbsupport.ru/showpost.php?p=1911387&postcount=154) fix and it worked.
Now the users don't have to go back and edit each post in order for the image to save.
l2-inferno
11-27-2010, 05:09 PM
dont work on 4.0.7, cant see the thumbnail :( plz help
slipkot
12-02-2010, 10:18 AM
I have installed it on vb 4.1.0 and at sticky threads it doesn't display the image...
abdelali
12-12-2010, 02:08 PM
I intalled and nothing i cant see the thumbnails.
abdelali
12-21-2010, 04:53 PM
Someone now how to put this mod in recent threads of vbadvanced cmps portal. thanks
mgurain
12-21-2010, 11:23 PM
This mod is very needed, but is not working,
who could make one with single product install and is working fine ?
Or fix this mod.
Thanks,,
AlexisMedia
12-31-2010, 05:27 PM
I'd like to use the "first attachment" option but it appears that vBSEO is changing my image attachment urls causing the thread thumbnail to be broken. Any ideas? I'm really needing to get this thing going as soon as possible.
Thanks!
AlexisMedia
01-01-2011, 06:20 PM
Begging for help at this point...
I've switched off vBSEO attachment rewrites but it's still having issues. Here is the urls
What thread thumbnails is looking for:
http://www.mysite.com/forums/attachment.php?attachmentid=29&stc=1&thumb=1
Where it needs to be looking:
http://www.mysite.com/forums/attachment.php?attachmentid=29&d=1293912681
Please help! Thanks!
AlexisMedia
01-01-2011, 06:46 PM
Fixed! Had the master setting for thumbnails turned off :(
megamoose
01-06-2011, 08:53 PM
Null, thanks for this mod. It is perfect.
The thumbnail generator I created in the previous version had a bug in it which would cause a great server load. This new version should run a lot quicker and more efficient. Remember if it does hang on your server decrease the STEP_AMOUNT variable.
Create a file on your server called threadthumbupdate.php with the following in the file and open it in your browser.
<?php $STEP_AMOUNT = 20000; ?>
<input type="button" id="btnNext" value="Process Next Results" onClick="window.location='?start='+(<?php echo $_GET["start"]; ?>+<?php echo $STEP_AMOUNT;?>)" disabled=true><br>
The button above should enable once this batch is complete!<br>
<br>
<?php
error_reporting(E_ALL & ~E_NOTICE & ~8192);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('SKIP_SESSIONCREATE', 1);
define('NOCOOKIES', 1);
define('THIS_SCRIPT', 'xupdate');
define('CSRF_PROTECTION', true);
// #################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array();
// get special data templates from the datastore
$specialtemplates = array();
// pre-cache templates used by all actions
$globaltemplates = array();
// pre-cache templates used by specific actions
$actiontemplates = array();
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
if (!$_GET["start"]) { $_GET["start"] = 0; }
$threads = $db->query_read_slave("
SELECT *
FROM " . TABLE_PREFIX . "thread
LIMIT ".$db->escape_string($_GET["start"]).",". $db->escape_string($STEP_AMOUNT));
while ($thread = $db->fetch_array($threads)){
$posts = $db->query_read_slave("SELECT * FROM `" . TABLE_PREFIX . "post` WHERE `postid` = '".$thread["firstpostid"]."'");
$post = $db->fetch_array($posts);
preg_match('/\[img\](.*?)\[\/img\]/i',$post["pagetext"],$matches);
$query = "UPDATE `" . TABLE_PREFIX . "thread` set `thumbnailurl` = '".$db->escape_string($matches[1])."' WHERE threadid = " . $thread["threadid"];
$db->query_write($query);
}
?>
<script> document.getElementById("btnNext").disabled = false;
</script>
DavidMatus
01-09-2011, 02:43 PM
Null, thanks for this mod. It is perfect.
The thumbnail generator I created in the previous version had a bug in it which would cause a great server load. This new version should run a lot quicker and more efficient. Remember if it does hang on your server decrease the STEP_AMOUNT variable.
And now is even better Thank you so much! now it work so perfect
fxwoody
01-14-2011, 02:16 AM
Well Moose! You made my day my friend ;)
Just reinstalled the new 4.1.1 for my forum and used your Script.......you're the man !!!!
Works like a charm :)
No more overload nor crash of anything.
I think you should take over this mod and reorganize it for every one.
Cheers
AlexisMedia
01-14-2011, 05:24 AM
If your using the upload 1st attachment option and a user accidently uploaded the wrong image 1st... is there a way I can admin change which image is the thumbnail? Other then having the user redo the post?
Is there a way I can maybe access the users attachment and change the image for that attachment name or something?
Does that make sense?
Thanks!
AlexisMedia
01-14-2011, 10:22 PM
My users were too frustrated with this so I had to uninstall. I would REALLY like it if this can be either editable by admin OR a separate specified attachment option when the user is writing their post. It can be attached and changed as the user pleases... I'll keep my eye out because I REALLY want this feature but the 1st attachment thing just doesn't work out. Img tags don't work about because not all are using image tags over attachments. And user entered URL doesn't work if the user is doing it as an attachment. So many options but not 1 solution that works for everybody and is easily changeable : (
Athena1984
01-14-2011, 10:39 PM
I have the settings to pull the first image in the post as the thumbnail and for some reason, it will not show up after initially posting. I have to post the thread then edit for the thumbnail to show up. Could this be because of another modification? Initially, I thought it was because of the MOD System, like vbulletin.org has so, I disabled it but, it's still giving me the same issue.
DaPike
01-18-2011, 10:49 AM
I'm using 4.1.0PL2. I can only see the NO THUMB COVER!
All used links to the right covers are not shown. There is also only the NO COVER to see!
What to do to get this mod working??
megamoose
01-20-2011, 07:09 PM
Going to repost this as it works the exact some for this version as the old:
Okay next fix:
If you are using the First Image in Post option, you will notice you only get a thumbnail when you update the post, and not when you create a new one. To fix this:
Goto the Manage Plugins tab in your ACP and edit New Thread - Save Thumbnail, Datamanager
You will then want to replace the Plugin PHP Code with:
if ($type == 'thread')
{
if($vbulletin->options['thread_thumbnails_thumbnail_source'] == '0')
{
$dataman->setr('thumbnailurl', htmlspecialchars_uni($post['thumbnailurl']));
}
if($vbulletin->options['thread_thumbnails_thumbnail_source'] == '2')
{
preg_match('/\[img\](.*?)\[\/img\]/i',$post['message'],$matches);
$dataman->setr('thumbnailurl', $matches[1]);
}
}
Chris Ober
01-24-2011, 05:09 PM
How can I enable this to work with First Attachment AND First Image in post?
Right now, if set to First Attachment, it doesn't display thumbnails for images hosted outside of the site (entered in IMG tags).
If it's set to First Image in Post, then the external image thumbnails are displayed but not the attachment ones.
bybart
01-25-2011, 08:01 PM
Working for 4.0.1? If not there for 4.1.0;
james shadle
01-25-2011, 10:50 PM
How can I enable this to work with First Attachment AND First Image in post?
Right now, if set to First Attachment, it doesn't display thumbnails for images hosted outside of the site (entered in IMG tags).
If it's set to First Image in Post, then the external image thumbnails are displayed but not the attachment ones.
Great question Chris.
I could use that feature on my board as well.
James
fxwoody
02-03-2011, 01:03 PM
Ok guys! i manage to make the thumbnail to work perfectly with the "User Entered URL"
function !!
The way i work on my forum, is, i have sections that i want to display the thumbnails for each thread, so, in the option menu, i use "User Entered URL" and "Thumbnails Required" set to yes.
Now, u can also put the option "Thumbnails Required" to NO and it will also get automatically the thumbnail image you set up in the "No Thumbnail Replacement Image".
The way i made it work in my V4.1.1 is like this:
In New posting Templates / newthread
Find:
<img id="display_posticon" src="{vb:raw selectedicon.src}" alt="{vb:raw selectedicon.alt}" />
</div>
and paste after:
<!---urlthumbnail--->
<vb:if condition="$show['thumbnailurl']">
<div class="blockrow">
<label for="thumbnailurl" class="full">{vb:phrase thumbnail_url}:</label>
<input type="text" name="thumbnailurl" id="thumbnailurl" class="primary full textbox" value="" maxlength="250" />
</div>
</vb:if>
<!---urlthumbnail--->
in editpost
find:
<img id="posticon_preview" src="{vb:raw selectedicon.src}" alt="{vb:raw selectedicon.alt}" title="Selected post icon" />
</div>
and paste after:
<!---autothumbnail--->
<vb:if condition="$show['thumbnailurl']">
<div class="blockrow">
<label for="thumbnailurl">{vb:phrase thumbnail_url}:</label>
<input type="text" name="thumbnailurl" id="thumbnailurl" class="primary textbox" value="{vb:raw threadinfo.thumbnailurl}" maxlength="250" />
</div>
</vb:if>
<!---/autothumbnail--->
In plugin manager for "Product : Thread Thumbnails"
in the : "New Thread - Save Thumbnail, Datamanager"
replace everything with this:
if ($type == 'thread')
{
if($vbulletin->options['thread_thumbnails_thumbnail_source'] == '0')
{
$dataman->setr('thumbnailurl', htmlspecialchars_uni($post['thumbnailurl']));
}
if($vbulletin->options['thread_thumbnails_thumbnail_source'] == '2')
{
preg_match('/\[(img|IMG)\]\s*(https?:\/\/([^*\r\n]+|[a-z0-9\/\\\._\- !]+))\[\/(img|IMG)\]/', $post['message'], $matches);
$dataman->setr('thumbnailurl', $matches[1]);
}
if($vbulletin->options['thread_thumbnails_required'] == '1' && empty($post['thumbnailurl']))
{
if($vbulletin->options['thread_thumbnails_thumbnail_source'] == '0')
{
$errors[] = $vbphrase['thumbnail_error_one'];
}
else if($vbulletin->options['thread_thumbnails_thumbnail_source'] == '2')
{
$errors[] = $vbphrase['thumbnail_error_two'];
}
}
}
Hope it helps a few of you ;)
dirk2103
02-06-2011, 06:27 PM
Okay next fix:
If you are using the First Image in Post option, you will notice you only get a thumbnail when you update the post, and not when you create a new one. To fix this:
Goto the Manage Plugins tab in your ACP and edit New Thread - Save Thumbnail, Datamanager
You will then want to replace the Plugin PHP Code with:
if ($type == 'thread')
{
if($vbulletin->options['thread_thumbnails_thumbnail_source'] == '0')
{
$dataman->setr('thumbnailurl', htmlspecialchars_uni($post['thumbnailurl']));
}
if($vbulletin->options['thread_thumbnails_thumbnail_source'] == '2')
{
preg_match('/\[img\](.*?)\[\/img\]/i',$post['message'],$matches);
$dataman->setr('thumbnailurl', $matches[1]);
}
}
Thanks ,this fix Works Perfect for 4.1.1
Thanks (y)
Would it be possible to have this custom icon INSTEAD of the threadicon, instead of having it left or right to it?
solohdes
02-16-2011, 10:40 PM
Does not work on vB 4.1.2, the thumbnail URL bar does not appear.
fxwoody
02-17-2011, 07:43 AM
Would it be possible to have this custom icon INSTEAD of the threadicon, instead of having it left or right to it?
You mean removing the thread icon totally?! Not sure if it would be good anyway.
Does not work on vB 4.1.2, the thumbnail URL bar does not appear.
Did you selected the auto add to template in options or manual???
If manual, then you might have to add this code to the newthread template:
<!---thumbnailurl--->
<vb:if condition="$show['thumbnailurl']">
<div class="blockrow">
<label for="thumbnailurl" class="full">{vb:phrase thumbnail_url}:</label>
<input type="text" name="thumbnailurl" id="thumbnailurl" class="primary full textbox" value="" maxlength="250" />
</div>
</vb:if>
<!---thumbnailurl--->
after this:
<img id="display_posticon" src="{vb:raw selectedicon.src}" alt="{vb:raw selectedicon.alt}" />
</div>
Tho, i didn't installed 4.1.2 ;)
Will get back to you with this
solohdes
02-17-2011, 04:57 PM
Did you selected the auto add to template in options or manual???
If manual, then you might have to add this code to the newthread template:
In the options where i have to active this option?
http://img638.imageshack.us/img638/8022/miniaturay.jpg
I am newbie in this.
fxwoody
02-19-2011, 10:56 AM
solohdes! This is the plugins manger my friend!
You need to set them up in the ACP options
ellinofatsa
02-22-2011, 03:57 PM
its working only in the new post in my forum bud the old image show the icon no image available!!!
how can i make that schow the old image post?
i have 20456 post...
Thank you! I now have the URL bar appearing in the New Thread, but when I paste my link it doesn't show. Is there a setting I'm not seeing? I have it set to, 'User entered URL' also.
Edit: I found that if I set the Automatic Template Edits to 'Yes' it will display, but not in the correct location.
https://vborg.vbsupport.ru/external/2011/02/9.jpg
Could you please help me get this straightened out? Thank you!
vB 4.1.1
fxwoody
02-23-2011, 11:10 AM
Ok works fine in 4.1.2
@ellinofatsa
fallow megamoose posts to run the script and fetch the images:
https://vborg.vbsupport.ru/showpost.php?p=2145120&postcount=200
@rofo
i do not use the "automatic" since it puts the script in the wrong place.
I have put my codes in:
Editpost/newthread/threadadmin_editthread to get the URL box to show.
Did you fallow all my instructions in this page up there?
Also, you didn't added the size in the main options to reduce the size of the thumbnail, this is why it's so big!
PM your site so i can look at it ;)
COL NIL SATIS
02-23-2011, 01:58 PM
also tagged until later
your24hourstore
02-23-2011, 02:08 PM
its working only in the new post in my forum bud the old image show the icon no image available!!!
how can i make that schow the old image post?
i have 20456 post...
I don't run this mod But probably in maintenance you would have to run the thread update
macroforum
02-24-2011, 05:16 AM
Thanks for this modification! Installed!
Antonio
heugabel
02-27-2011, 01:50 PM
after upgrade to 4.1.2 it doesnt work.
i have used manually templateedits and your fixes but nothing works.
fxwoody
02-27-2011, 11:41 PM
after upgrade to 4.1.2 it doesnt work.
i have used manually templateedits and your fixes but nothing works.
Make sure that in the "thread_thumbnail_threadbit" you have this code.
You can remove the (class="magnify") at the end, i have an xtra jquery on mouseover for my thumbnails.
<vb:if condition="$thread['thumbnaildisplay'] AND (!$thread[sticky] OR ($vbulletin->options[thread_thumbnails_sticky] == '1'))">
<a href="{vb:link thread, {vb:raw thread}}" id="thread_gotonew_{vb:raw thread.realthreadid}" style="float:left;clear:right;display:block;padding-right:5px;"><img style="{vb:raw thread.thumbnailstyle}" src="{vb:raw thread.thumbnailurl}" class="magnify"></a>
</vb:if>
fxwoody
02-28-2011, 11:51 AM
If anyone interested on having Magnifier for this mod, see my post here:
https://vborg.vbsupport.ru/showthread.php?t=259577
A few little edit to be done only ;)
QuickQuestion
03-14-2011, 04:15 AM
I'm having the same problem that a couple others before me are having. The thumbnail is in a really bad location far right of where it should be. Looks like this, can anyone help out?
https://vborg.vbsupport.ru/attachment.php?attachmentid=127387&d=1300002806
fxwoody
03-14-2011, 08:08 AM
Replace code in thread_thumbnail_threadbit with this:
<vb:if condition="$thread['thumbnaildisplay'] AND (!$thread[sticky] OR ($vbulletin->options[thread_thumbnails_sticky] == '1'))">
<a rel="nofollow" style="float:left;clear:right;display:block;padding-right:5px;">
<img style="{vb:raw thread.thumbnailstyle}" src="{vb:raw thread.thumbnailurl}" class="magnify"></a>
</vb:if>
and make sure that Thumbnail Location in options are set to after thread icon
and add this in Thumbnail Style:
width:40px;height:55px;padding:2px; you can change the size of the thumbs to fit your style.
Hope it helps ;)
QuickQuestion
03-14-2011, 04:31 PM
I'm not exactly sure where to put this in. I edited my xml file, then reinstalled it. It made it so that none of my threads would appear at all (not good). Any pointers as to where you edit something like this? I'm ... eh.... new to this. :rolleyes:
QuickQuestion
03-14-2011, 06:00 PM
Also, what is Thumbs.db? I am supposed to enter that into my database?
fxwoody
03-15-2011, 10:47 AM
I replied to your PM QuickQuestion! You will need to read my friend! Everything is explain on how to add or modifiy codes in many plugins!
This is a basic thing to learn when using vBulletin plugins ;)
You can refer to this:
https://vborg.vbsupport.ru/showthread.php?t=82621
It should help you understand the basic ;)
reddyink
03-18-2011, 01:57 AM
Great MOd. Question: How do I extend the blue strip background of views/replies to fill threadbit. Please see attachement.
dr.tawy
03-25-2011, 07:42 AM
Any chance i can edit thread thumbnail in Quick Edit mode ?
it would really help
fxwoody
03-26-2011, 08:36 AM
@reddyink:
I would suggest that you use firebug 1.7.0 with your firefox, it will help you out a lot ;)
@dr.tawy
Can't tell you for now! My whole board just crash :(
NightLord
03-26-2011, 03:03 PM
I have problem with the letters did not lay beneath and places left what should I do so in order to correctly display
http://www.greek-best.com/forumdisplay.php?545
fxwoody
03-27-2011, 11:30 AM
@nightlord
Well you could try to shrink the thumbnail first to see how it will turn out! Try this:
width:40px;height:55px;padding:2px;
I don't read greek but it looks like you have lots of text showing i showthreads!
For the location, you should see the options and put it "after Threadicon".
NightLord
03-27-2011, 12:24 PM
the tasted what I give and slaves you have a non fine but the problem is when telionei the icon of the Forum Secretary puts me on the left does not lay beneath like the other
and the code was I had
width: 85px; max-height: 100px;
and changed him and put it to me give you have a non
dr.tawy
03-27-2011, 12:35 PM
Any chance i can edit thread thumbnail in Quick Edit mode ?
it would really help
UPP
fxwoody
03-28-2011, 09:14 AM
the tasted what I give and slaves you have a non fine but the problem is when telionei the icon of the Forum Secretary puts me on the left does not lay beneath like the other
and the code was I had
width: 85px; max-height: 100px;
and changed him and put it to me give you have a non
Wow!!! This one is hard to understand NightLoard! :eek:
Hehehe, i don't get what you are saying here my friend lolll
It would be easier if i could access the template! ;)
@Dr.Tawy
What is UPP?????
I guess for your quick edit, you could simply add the code in the template?!?!
I'm back on track with my forum, let me see.
dr.tawy
03-29-2011, 10:42 PM
Wow!!! This one is hard to understand NightLoard! :eek:
Hehehe, i don't get what you are saying here my friend lolll
@Dr.Tawy
What is UPP?????
I guess for your quick edit, you could simply add the code in the template?!?!
I'm back on track with my forum, let me see.
i tried adding the template but didn't work for me :(
i really appreciate any help as i am trying to set thread thumbnails for more than 8.000 threads and all with a small thumbnail (specific image) and cannot be the first image nor attachment so any help would me very much appreciated
sorry for being pushy.
Mikevet1984
03-30-2011, 12:37 PM
I have problem with the letters did not lay beneath and places left what should I do so in order to correctly display
http://www.greek-best.com/forumdisplay.php?545
NightLord το πρόβλημα που αντιμετωπίζεις λύνεται μέσω του stylevars....Στείλε μου π.μ. να σου πω σε ποιο σημείο θέλει αλλαγή ....
NightLord
03-30-2011, 06:32 PM
NightLord το πρόβλημα που αντιμετωπίζεις λύνεται μέσω του stylevars....Στείλε μου π.μ. να σου πω σε ποιο σημείο θέλει αλλαγή ....
Σου εστειλα πμ περιμενω σου μηνυμα σου. . .
Σε ευχαριστω νασε καλα
stationar
03-30-2011, 10:30 PM
This mode is underdeveloped. Lot's of bugs. Please fix the issues:
1. Unable to edit the thumbnail
2. Unable to create thumbnail in old threads.
3. Unable to keep image proportions for thumbnails (blows them vertically or horizontally)
4. Various styling errors
fxwoody
03-31-2011, 10:24 AM
This mode is underdeveloped. Lot's of bugs. Please fix the issues:
1. Unable to edit the thumbnail
2. Unable to create thumbnail in old threads.
3. Unable to keep image proportions for thumbnails (blows them vertically or horizontally)
4. Various styling errors
Well, you're right about not being well supported, but we try our best to put our own modif to help!
I personally use it and it works like a charm in my 4.1.2, you should look threw the previous posts and read them, it will tell you how to fix everything you mentionned ;)
Good luck! :D
fxwoody
03-31-2011, 10:33 AM
i tried adding the template but didn't work for me :(
i really appreciate any help as i am trying to set thread thumbnails for more than 8.000 threads and all with a small thumbnail (specific image) and cannot be the first image nor attachment so any help would me very much appreciated
sorry for being pushy.
Let me get you here! Are the Thumbnail showing in the threadlist???
If so, you can use megamoose's Script to get the first images of every posts!
here:
https://vborg.vbsupport.ru/showpost.php?p=2145120&postcount=200
Mikevet1984
03-31-2011, 10:51 AM
A lot of bugs really...
The instructions included in the mod's folder do not work....
Follow fxwoody and dirk2103 tutorial which works 100%. It is on page 15 posts 211 and 212.
I think a moderator should ad these html script tutorials in the first post so the user's to get help without needed to read 17 pages of posts.
fxwoody
04-01-2011, 02:25 AM
Tks Mikevet1984 ;)
I think it should mandatory for mods that are not supported anymore to be replaced or like you said UPDATED !
We have been working on this to make it work for looooong time without Null P. and ........well we'll see what future is reserved ;)
Cheers Mike!
Mikevet1984
04-01-2011, 06:36 AM
Dear fxwoody!
I have seen some mods here in the vbulletin.org which did not got updated by the coders and and as a result some other coder took the responsibility to post a new thread with the same mod updated by themselves.
I think this is the solution to the problem with all these abandoned mods. In terms of this mod sb should change the plug-inscripts with working ones, plus making html script to be added automatically in the templates (in the user defined url) and release this mod as a new one making reference of course as source to this one.
dr.tawy
04-01-2011, 09:27 AM
Let me get you here! Are the Thumbnail showing in the threadlist???
If so, you can use megamoose's Script to get the first images of every posts!
here:
https://vborg.vbsupport.ru/showpost.php?p=2145120&postcount=200
Yes the thumbnails are showing in the threadlist, Mod is working and everything is fine
the problem is that i am following the "User Entered URL" option as i am making a thumbnail image for each thread
i now have about 8.000 threads that i am willing to edit to put a thumbnail image in them (threads are already made)
all what i want is a field on the quick edit mode to enter the url of the thumbnail instead of going to advanced edit mode
it would save a lot of time for me
Thanks,
I really appreciate your help
fxwoody
04-01-2011, 10:09 AM
Doc! There is no other way for now to import those images with out Megamoose's script :(
I'm not qualified enough to make those changes inside the scripts, tho, i can tell you from experience that his script works with out a flaw when importing first image from post !
I had the same situation and use URL too, if you have a test site you can try it there first in case of, but, i pretty confident that the script will work fine!
Only trouble is the image itself! If the first one of every posts or so, is a banner or other then the cover page, it will be attach to the thumbnail :(
Tho you can after, edit the ones that are no good for the post display.
Hope it helps ;)
dr.tawy
04-01-2011, 10:27 PM
Doc! There is no other way for now to import those images with out Megamoose's script :(
I'm not qualified enough to make those changes inside the scripts, tho, i can tell you from experience that his script works with out a flaw when importing first image from post !
I had the same situation and use URL too, if you have a test site you can try it there first in case of, but, i pretty confident that the script will work fine!
Only trouble is the image itself! If the first one of every posts or so, is a banner or other then the cover page, it will be attach to the thumbnail :(
Tho you can after, edit the ones that are no good for the post display.
Hope it helps ;)
i see , my only problem is that the first image in post is large in dimension and size so in the end the forumdisplay page loads very slowly as i have it set to show 30 threads per page
i decided to create a thumbnail image with less dimensions and size:(
anyway i really appreciate your time and i hope you keep supporting this mod as it the best.
GONUMBER6
04-03-2011, 11:03 PM
Going to repost this as it works the exact some for this version as the old:
Thanks that worked perfectly :up:
downloadfound
04-19-2011, 09:20 PM
Null, thanks for this mod. It is perfect.
The thumbnail generator I created in the previous version had a bug in it which would cause a great server load. This new version should run a lot quicker and more efficient. Remember if it does hang on your server decrease the STEP_AMOUNT variable.
Create a file on your server called threadthumbupdate.php with the following in the file and open it in your browser.
<?php $STEP_AMOUNT = 20000; ?>
<input type="button" id="btnNext" value="Process Next Results" onClick="window.location='?start='+(<?php echo $_GET["start"]; ?>+<?php echo $STEP_AMOUNT;?>)" disabled=true><br>
The button above should enable once this batch is complete!<br>
<br>
<?php
error_reporting(E_ALL & ~E_NOTICE & ~8192);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('SKIP_SESSIONCREATE', 1);
define('NOCOOKIES', 1);
define('THIS_SCRIPT', 'xupdate');
define('CSRF_PROTECTION', true);
// #################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array();
// get special data templates from the datastore
$specialtemplates = array();
// pre-cache templates used by all actions
$globaltemplates = array();
// pre-cache templates used by specific actions
$actiontemplates = array();
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
if (!$_GET["start"]) { $_GET["start"] = 0; }
$threads = $db->query_read_slave("
SELECT *
FROM " . TABLE_PREFIX . "thread
LIMIT ".$db->escape_string($_GET["start"]).",". $db->escape_string($STEP_AMOUNT));
while ($thread = $db->fetch_array($threads)){
$posts = $db->query_read_slave("SELECT * FROM `" . TABLE_PREFIX . "post` WHERE `postid` = '".$thread["firstpostid"]."'");
$post = $db->fetch_array($posts);
preg_match('/\[img\](.*?)\[\/img\]/i',$post["pagetext"],$matches);
$query = "UPDATE `" . TABLE_PREFIX . "thread` set `thumbnailurl` = '".$db->escape_string($matches[1])."' WHERE threadid = " . $thread["threadid"];
$db->query_write($query);
}
?>
<script> document.getElementById("btnNext").disabled = false;
</script>
I want to give a big shout out to everyone who's helped make this script happen. It is GREAT!!!!! I hope it continues to work through-out VBs update.
ahmedipa
04-26-2011, 08:24 AM
nice thank you
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.