PDA

View Full Version : New Posting Features - Thread Thumbnails


Pages : 1 [2]

Cust0ms
03-03-2010, 11:55 AM
@Null Parameter, please look @ the screenshot

Null Parameter
03-03-2010, 01:54 PM
@Null Parameter, please look @ the screenshot
The First Attachment option is known to be broken at the moment. I should probably release a fix for that since I'm already messing with the code.... :D

Null Parameter
03-03-2010, 05:31 PM
Got everything updated to vB4! New mod is posted for your enjoyment (https://vborg.vbsupport.ru/showthread.php?t=237404).

Also update this version of the mod to fix the First Attachment DB Error as well as include the fix for using First Image in Post for new threads.


Thanks again to everybody that helped get this going again and those that assisted people in my absence.

motoxer311
03-04-2010, 01:54 PM
Not working for me, just shows regular icons..

MrRem
03-05-2010, 09:05 AM
Is there a way to make the Thread Thumbnail a requirement before submitting a post?

Null Parameter
03-05-2010, 01:24 PM
Is there a way to make the Thread Thumbnail a requirement before submitting a post?
That is currently an option in the vB4 version, but not in this one. If there's demand for it, I could probably port that functionality back here as well.

Xtrigit
03-06-2010, 03:12 PM
How can I manually add this to a custom style? I have a custom style that has basic functionality and I would like to know what code this MOD is calling that my style does not have and therefore not displaying the thumbnails.

Works great on all fully functional styles.

Thanks in advance =]

Xtrigit
03-06-2010, 04:42 PM
I was able to get it to work and this is my final code. I'd really appreaciate it if you could take a minute to review it and see if there is anything I could change to improve it.

<table cellpadding="0" cellspacing="0">
<if condition="$bg++"><!-- Row: $bg --></if>
<tr class="<if condition="$bg%2 == 0">alt2<else />alt1</if>" height="40px">
<td width="24">
<if condition="$show[threadicons]">
<td class="alt2" align="center" valign="middle">
<if condition="$thread[thumbnaildisplay] AND !$thread[sticky]">
<a href="showthread.php?$session[sessionurl]t=$thread[threadid]">
<img src="$thread[thumbnailurl]" alt="" border="0" width="61"/>
</a>
<else />
<if condition="$show[threadicon]">
<img src="$thread[threadiconpath]" alt="$thread[threadicontitle]" border="0" />
</if>
</if>
</td>
</if>
</td>
<td width="100%">

Regards,
Xtrigit

Cerbero1000
03-30-2010, 12:03 PM
All works fine except the "no thumbnail" images that appears as a red cross (/attachment.php?attachmentid=&stc=1&thumb=1). Can someone help me? If I select image url "no thumb" appear correctly but not for first attachment option.
Thanks

Null Parameter
03-30-2010, 01:28 PM
All works fine except the "no thumbnail" images that appears as a red cross (/attachment.php?attachmentid=&stc=1&thumb=1). Can someone help me? If I select image url "no thumb" appear correctly but not for first attachment option.
Thanks

The First Attachment option is known to be broken at the moment.

The First Attachment option doesn't work well in general.

Cerbero1000
03-31-2010, 10:19 AM
Solved. All works perfectly!

matthewhotdude
03-31-2010, 12:32 PM
Installed, but no thumbnails are showing up.

Ok sorted that out, had to add the width manually.

But is there a way to update all old threads so the thumbnails show up?

Null Parameter
03-31-2010, 01:35 PM
Installed, but no thumbnails are showing up.

Ok sorted that out, had to add the width manually.

But is there a way to update all old threads so the thumbnails show up?

I haven't tested this, but others have used it successfully.


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 "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<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 "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<b>SQL:</b>".$query."<br><br>";
$db->query_write($query);

}
?>

<script> document.getElementById("btnNext").disabled = false; </script>

Null Parameter
03-31-2010, 01:37 PM
Solved. All works perfectly!
Good to hear! What did you have to do?

Also, I forgot that I fixed and uploaded a new version where thumbnails should work correctly. Not sure how I forgot that.... :cool:

matthewhotdude
03-31-2010, 01:42 PM
I haven't tested this, but others have used it successfully.

Where do I do that?

Sorted!

Thanks great mod works perfect

Null Parameter
03-31-2010, 03:13 PM
Where do I do that?

Sorted!

Thanks great mod works perfect
Great!

siliconfinance
04-03-2010, 06:45 AM
That is currently an option in the vB4 version, but not in this one. If there's demand for it, I could probably port that functionality back here as well.

:up:^Pie^3

If you did it, it would make a lot of people :D

Cybershaolin
04-04-2010, 07:51 PM
Very nice hack but I have a problem with it. I use "First Attachment as the option for displaying the thumbnail but whenever the user does not have any attachments in the thread, nothing shows in the forum column. No thread icon or no "Nothumb.jpg" image even if I have define to use one image if there is none uploaded by the user. The path for nothumb.jpg is correct.

The result is not really nice since it only shows thumbnails for users who have attachments and it shows empty spots everywhere else. So, all the thread icons have disapeared and/or no "Nothumb.jpg" image is showing. I used to have what you see on the first picture but now I have what you see on the second picture.

Why is it doing that and am I the only one for which this is happening?

I chose automatic template edits in the options but, if I decide to choose to do manual edits for the templates, where are they? There is nothing in the readme talking about manual template edits besides those if you upgrade from a previous version.

Cybershaolin
04-06-2010, 02:56 AM
I found out what's happening:

1- If you use the option "First Attachment: If the user adds an attachment to the thread, the first image attachment will be used as the thumbnail."
- The thumbnail is diplayed correctly as shown in my previous post in the attached screenshots.
- There is nothing else shown if no attachment is present, No "Nothumb.jpg" picture or no thread icon, just a blank space, again, as shown in my previous post in the attached screenshots.

2- If you use the option "First Image In Post: If the user adds an image into their post, via [IMG] tags, then the first image in the post will be used as the thumbnail."
- The thumbnail is diplayed correctly in the forum.
- If no attachment is present, then the picture "Nothumb.jpg" picture displays correctly if we choose to display it or the thread icon also displays correctly if this option is retained.

Therefore, for me, only the option "First image in Post" works correctly for the thread icon or the "Nothumb.jpg" picture to appear when there is no IMG tag in the post.

The problem is that I don't want to use this option or the URL option either. I want to use the option "First Attachment"! So is there a fix for this? And finally, is it possible to get the template manual edits?

Cybershaolin
04-09-2010, 06:16 PM
That would be nice to get some kind of answer on the bug I'm experimenting.

Null Parameter
04-09-2010, 07:20 PM
That would be nice to get some kind of answer on the bug I'm experimenting.It would be nice if people realized that developers don't surround their lives around a single project. Seriously, if people can't have patience, then I'm just going to mark this as Not Supported and be done with it, especially since I don't even have a vBulletin forum anymore and I'm doing this ONLY for you.

I uploaded a new version that should fix this issue, but again, since I don't have a forum of my own anymore, I have no way to actually test it.


You should theoretically be able to extract the template edits yourself from the product file, just as easily as I could, but because I'm just that nice, here they are....


In editpost, find <!-- / subject field --> and put this below it:

<if condition="$isfirstpost AND $showthumbnailedit">
<if condition="$vbulletin->GPC[advanced]">
<input type="hidden" name="desc_adv_thumb" value="1" />
</if>
<table cellpadding="0" cellspacing="0" border="0" style="margin-bottom:$stylevar[formspacer]px\">
<tr>
<td class="smallfont" colspan="3">Thumbnail URL:</td>
</tr>
<tr>
<td><input type="text" class="bginput" name="thumbnailurl" value="$threadinfo[thumbnailurl]" size="50" maxlength="250" tabindex="1.5" title="" /></td>
</tr>
</table>
</if>
In newthread, find <!-- / subject field --> and put this below it:
<if condition="$showthumbnailedit"><table cellpadding="0" cellspacing="0" border="0" style="margin-bottom:$stylevar[formspacer]px"><tr><td class="smallfont" colspan="3">Thumbnail URL:</td></tr><tr><td><input type="text" class="bginput" name="thumbnailurl" value="$threadinfo[thumbnailurl]" size="50" maxlength="250" tabindex="1.5" title="" /></td></tr></table></if>
In threadbit, find
<if condition="$show[threadicons])>
<td class="alt2"><if condition="$show[threadicon]><img src="$thread[threadiconpath]" alt="$thread[threadicontitle]" border="0" /></if></td></if>
and replace it with
<if condition="$show[threadicons]">
<td class="alt2" align="center" valign="middle">
<if condition="$thread[thumbnaildisplay] AND (($vbulletin->options[thread_thumbnails_sticky] == '1') OR !$thread[sticky]))>
<a href="showthread.php?t=$thread[threadid]">
<img src="$thread[thumbnailurl]" alt="" border="0" width="$thread[thumbnailwidth]"/>
</a>
<else />
<if condition="$show[threadicon]>
<img src="$thread[threadiconpath]" alt="$thread[threadicontitle]" border="0" />
</if>
</if>
</td></if>
Truthfully, this one's a little rough, but it should be right.

Cybershaolin
04-10-2010, 01:45 AM
Thanks for the update but this does not resolve the "First attachment" option. There is still nothing that shows if no attachment is there. There is no thread icon or nothumb.jpg picture showing depending on what I want to be displayed.

Also, in your last template edits, for threadbit, when I change it according to what you are saying, it vbulletin does not want to update it saying there are errors. Having no coding skills, I'm back to square one.

It's such a nice hack, just too bad that it's not working entirely. I hope that you can still fix the bugs but without vbulletin to test, I have no idea how you can manage to do it. Therefore if you don't update it anymore, I guess you're right and you should think about marking it as not supported.

siliconfinance
04-12-2010, 06:21 AM
Just out of curiosity, could you make it possible to display a thumbnail of the first image displayed in a thread and if there is none, then display a thumbnail of the attached image.

So based on this page:
http://www.vbulletin.com/docs/html/template_conditionals



<If condition="there is an image in IMG tags in the first post">Display a thumbnail of that image in the forum display</if>

<else />

<if condition="there is an image attached to the first post of a thread">Display a thumbnail of that image in the forum</if>

<else />

Display default thumbnail NoImage.jpg

bada_bing
04-12-2010, 05:22 PM
I just noticed a bug which does the following on my site.

In the admincp in feature Show in what forums? I have forum ID 225 which means that the thread thumbnail option should only be available in forum 225 and not others is not working, in fact it shows up in just about every forum???????
What is the deal with this? I am running vb 3.8.3

AllinJac
04-12-2010, 11:27 PM
It would be nice if people realized that developers don't surround their lives around a single project. Seriously, if people can't have patience, then I'm just going to mark this as Not Supported and be done with it, especially since I don't even have a vBulletin forum anymore and I'm doing this ONLY for you.

I uploaded a new version that should fix this issue, but again, since I don't have a forum of my own anymore, I have no way to actually test it.


You should theoretically be able to extract the template edits yourself from the product file, just as easily as I could, but because I'm just that nice, here they are....


WOW...

I do not think anyone responded to your statement... Do they not read it or do they not really care???

Just wanted to tell you that I use this product and I APPRECIATE your efforts on this project even though you do not have vBulletin site anymore...

If you need to test it I would be willing to give you access to my test site as well as testing it on my live board!

Hope this helps you out and again THANK YOU for taking your time to offer a FREE product to us all!

Cybershaolin
04-13-2010, 12:56 AM
Uninstalled since what I need is not working. Period.

AllinJac
04-13-2010, 05:01 AM
Uninstalled since what I need is not working. Period.

To bad it is not working for you... It is working just fine for me... Looks absolutely great, especially since this is a FREE plugin that you do not have to pay for!

Maybe you are missing the point... If you are patient and as for help the right way maybe you will get the answers you are looking for... And if not then oh well uninstall...

THIS IS A FREE FORUM for us to add products to our site... No need to be harsh... PERIOD...

MrRem
04-13-2010, 07:32 AM
Would there be a chance of allowing more than one default image.
So if a user didnt put in a thumbnail image, it would pull a random image from a group of 10?

default1.jpg
defaultt2.jpg
etc

picks one and displays that.

Cybershaolin
04-13-2010, 11:56 AM
To bad it is not working for you... It is working just fine for me... Looks absolutely great, especially since this is a FREE plugin that you do not have to pay for!

Maybe you are missing the point... If you are patient and as for help the right way maybe you will get the answers you are looking for... And if not then oh well uninstall...

THIS IS A FREE FORUM for us to add products to our site... No need to be harsh... PERIOD...

Wow, if it's working for you fine man. For the situation I described it's not for me, that's it. No need to repeat the same thing over and over. Nobody's was rushing anybody here and yes it's a free forum with a liberty of free speech from everybody so relax, take your pills and get a life.

bada_bing
04-13-2010, 12:07 PM
I just noticed a bug which does the following on my site.

In the admincp in feature Show in what forums? I have forum ID 225 which means that the thread thumbnail option should only be available in forum 225 and not others is not working, in fact it shows up in just about every forum???????
What is the deal with this? I am running vb 3.8.3

Any help with this please..

w3rd511
04-14-2010, 04:35 PM
I haven't tested this, but others have used it successfully.

Where exactly do we put that script?


**edit
nm found it

matthewhotdude
04-14-2010, 04:46 PM
Where exactly do we put that script?

I just put it in the root of my site

swag
04-28-2010, 12:17 AM
hey i could need some serious help..

i axedently installed version 1.1 which didn't work. after seeing v2.2 i installed it properly and it worked as it should. but then i found out that the new posts/todays posts gots error when i click on the link

here's the warnings am receiving..
Warning: Cannot use a scalar value as an array in [path]/search.php on line 2977

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 81

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 97

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 119

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 151

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 157

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 160

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 169

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 170

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 188

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 189

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 199

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 200

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 224

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 225

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 231

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 232

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 256

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 267

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 268

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 295

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 339

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 340

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 351

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 368

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 369

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 401

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 402

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 403

Warning: Cannot use a scalar value as an array in [path]/includes/functions.php on line 1131

Warning: Cannot use a scalar value as an array in [path]/includes/functions.php on line 1132

Warning: Cannot use a scalar value as an array in [path]/includes/functions.php on line 1133

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php(452) : eval()'d code on line 46

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php(452) : eval()'d code on line 54

Warning: Cannot use a scalar value as an array in [path]/search.php on line 3012

also ive tried to uninstall it but the problem still occour, please help

matthewhotdude
04-28-2010, 10:14 AM
hey i could need some serious help..

i axedently installed version 1.1 which didn't work. after seeing v2.2 i installed it properly and it worked as it should. but then i found out that the new posts/todays posts gots error when i click on the link

here's the warnings am receiving..
Warning: Cannot use a scalar value as an array in [path]/search.php on line 2977

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 81

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 97

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 119

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 151

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 157

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 160

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 169

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 170

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 188

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 189

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 199

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 200

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 224

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 225

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 231

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 232

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 256

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 267

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 268

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 295

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 339

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 340

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 351

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 368

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 369

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 401

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 402

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php on line 403

Warning: Cannot use a scalar value as an array in [path]/includes/functions.php on line 1131

Warning: Cannot use a scalar value as an array in [path]/includes/functions.php on line 1132

Warning: Cannot use a scalar value as an array in [path]/includes/functions.php on line 1133

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php(452) : eval()'d code on line 46

Warning: Cannot use a scalar value as an array in [path]/includes/functions_forumdisplay.php(452) : eval()'d code on line 54

Warning: Cannot use a scalar value as an array in [path]/search.php on line 3012

also ive tried to uninstall it but the problem still occour, please help



Did you undo the template edits?

swag
04-28-2010, 11:43 AM
Did you undo the template edits?

yes i did that b4 i installed v2.2

Xtrigit
05-03-2010, 02:55 PM
Hello, developer!

I would like the thumbnails to display on FORUMHOME, for this I will be using another MOD "Latest X attachments", since I am using the "Thumbnail URL" option, I want to know what the code is to call the latest thumbnails, i mean something like $thumbnail URL etc

thanks!

EDIT:

i looked at the code, is this the correct string? $thread[thumbnailurl] ?

Devanand
05-04-2010, 08:34 PM
I have a problem. First, my templates didn't edit automaticly so I did it my self. After I edit them thumbnails are showing only in threads after I installed this MOD. For old threads just showing image I set for " no image ".

Thanks in advance

1320Nation
05-21-2010, 07:40 PM
It would be nice if people realized that developers don't surround their lives around a single project. Seriously, if people can't have patience, then I'm just going to mark this as Not Supported and be done with it, especially since I don't even have a vBulletin forum anymore and I'm doing this ONLY for you.



Null Parameter, I appreciate your time spent on this mod. Thank you..and Thank You again.

cgway.net
06-05-2010, 12:28 PM
please update this product for 3.8.5 it's not work

TheKdd
06-15-2010, 10:49 PM
Tagged - looks great, but I updated to 3.8.5 recently. Anyone here have it working on it, or is it not working as cg stated?

Taurus1
06-28-2010, 08:53 AM
It works perfectly for me on 3.8.5 (I have not updated to the latest release though!)
What I want to know is, what does this mean?

Default Thumbnail Option ComboThanks!!

EDIT: I upgraded to Version 2.2 and it works fine. I really just wish that it was possible to have it show the thumbnail for image and attachment. So if there was only images then it will show the thumbnail, or if there were attachments it will also show the thumbnail. In other words a combo!

bada_bing
06-28-2010, 04:48 PM
This mod does not work as noted....Even though I told this hack to use one forum ID to "Show in what forums?" it will list it in all my forums..............

Ichigo88
07-02-2010, 09:01 AM
not work with First Image In Post! any help please?
edit: ok sorry it is work! but his work on new topic posted! with the old topic does not work!
how to update?

Ichigo88
07-07-2010, 06:59 AM
up please!

cgway.net
07-12-2010, 01:22 AM
not work for me completely not shown any thumbnails in selected forums

any help please

my forums 3.85

mgurain
07-16-2010, 11:17 PM
Hi,
Thanks for this mod, I have few suggestions to make it better:
1. Additional column instead of replacing Thread Icon.
2. group permission to use the feature, like I need only admins & mods to be able to specify thread thumbnails.

Thanks,,

cgway.net
07-17-2010, 05:09 AM
why no any replay from the coder

adonis4u
07-22-2010, 10:08 AM
not work for me completely not shown any thumbnails in selected forums

any help please

my forums 3.85

Hi. This Mod work in all version (Also 3.8.6) and You must Selcted in a Option For:

- URL Source
- Attach
- First Image of Post

Perhaps unfortunately, is that the choice of "First image of the Post" that
can be deceiving ...

If in fact be selected under precisely this option, then putting
General Options in the Mod in question IDs of the various forums
Chosen at first glance we see that does not work.

And this is wrong ...

Seeing the list of threads because there is no
image ... but if we change the various posts (only modified
by the button "edit" and then save that here ).... whoil? ...
the preview image appears next to the post you want.

Unfortunately this mod is basically in conflict with the icon of the discussion .... In fact if we have several posts that have the icon of the debate is not just vadiamo anything .... if we modify the message and
then returns you to the list of threads here that appear to
the image of the preview that we wanted. basically we should not use
icons of the discussion if we want to use this mod. or saved
icon and then not preview image of thread
.. or do not save the message with the icon of the discussion and
so we'll see the image preview. or we need to do the double passage
would select precisely the question icon, save, and then return
in the message, re-select "edit", save again, and so we
icon of debate and the image preview.

I do not know if I was clear ..

for the other options (Link and attach) are working properly;)

cgway.net
07-22-2010, 10:25 AM
really i have test all your procedure above but no any new

also not work

any idea ???

cgway.net
07-22-2010, 10:27 AM
i have test it now in my default style and it's work

can you give me the manual modification for the templates please

cgway.net
07-22-2010, 10:29 AM
but also thumbnails not appear in the search for Default style

i wait your replay

cgway.net
07-22-2010, 10:58 AM
i wait your replay

Winter Sonata
07-24-2010, 11:16 AM
any possibility to see this working with VB4

Linos-1
07-25-2010, 08:37 PM
hello i have litle proplem here with this hacks

vBulletin 3.8.6:

Invalid SQL:
ALTER TABLE thread ADD thumbnailurl varchar(250) NOT NULL;

MySQL Error : Duplicate column name 'thumbnailurl'
Error Number : 1060
Request Date : Sunday, July 25th 2010 @ 01:02:22 PM
Error Date : Sunday, July 25th 2010 @ 01:02:23 PM
Script : http://www.***********/forum/admincp/plugin.php?do=productimport
Referrer : http://www.**********/forum/admincp/plugin.php?do=productadd
IP Address :
Username :
Classname : vB_Database
MySQL Version : 4.1.24-max-log

Sayid
08-01-2010, 01:58 AM
I have a small problem, thumbnail URL text box displaying in all forums. It should be in the selected forum only when we edit or write a thread.

DaPike
08-03-2010, 12:49 PM
Hi,

the mod is very nice. But one little problem. In my forum there a lot of threadicons. But when I use the mod, the thumbnails are shown instead of the threadicons!
Is there a chance to get both on the screen??
In the new version for vB4 there is an option to choose. But when I try this version, forumdisplay gets a blank, white site.
Please help me.

Greetz

DaPike

PS:
My vB Version is 3.8.2

221
08-15-2010, 01:18 PM
what are the manual edits needed for thumbs in search.php? Not working for me automatically on the default 3.8.6pl1 theme even.

Other then that, awesome mod!

DaPike
08-15-2010, 04:26 PM
Hi,

is there a chance to get these features working soon???

Possible Future Features (With Request)

* Additional column instead of replacing Thread Icon
* Displaying Thumbnail within thread
* Edit thumbnail through Thread Edit
* Thumbnail Preview in Edit Window

It would be very very nice if ADDITIONAL COLUMN INSTEAD OF REPLACING THREAD ICON could work asap.

Please try to get this working. Or can someone tell me to fix it by my self??

Greetz

DaPike

fenris
08-18-2010, 09:28 AM
Hy,

i have a problem - the hack works with firefox very fine but it doesn't work with internet explorer.
Under Firefox all thumbnauls will be show but under internet explorer it will show now thumdnails ??? What is the problem ?

best regards

Frank

DaPike
08-18-2010, 03:34 PM
Hi,

please give a link to your site!
Thx.

Greetz

DaPike

angeljs
10-20-2010, 06:55 PM
This not working for search :(

angeljs
10-29-2010, 07:40 PM
Sorry to bump, I don't normally, but this is the last mod I need to get working properly for my site. If anyone can help with getting this to work with the search and tags I'd be so happy! :D

Fifth Dimension
11-08-2010, 10:17 PM
Excellent mod. Haven't installed or download it yet, but was wondering: is there a way to add a bit of the thread text into the preview/thumbnail as well? Perhaps a code in "threadbit" that will pull a certain number of characters from the first post? It's kind of like the Article Forum mod, but I like how this one keeps the columns for "View, Replies and Last Post."

If this mod can be modified to add a bit of text preview, in addition to the image thumbnail, that would be fantastic. Maybe this has already been asked in this thread, I don't know, but since the thread is very long figured I'd ask again.

Thanks so much.

ryancooper
01-15-2011, 01:27 AM
I have 2 questions on this hack.

1 I have to rebuild thumbnails everytime to get them to show. Any way to fix that?

2. Is it possible to have it use a attachment first, if no attachment use img tag is no img tag use first image in post?

Tanks

AleXanniX
01-21-2011, 08:55 AM
Is possibile to know what templates must i edit? auto-template doesn't work with my non-default style.

robbiefritz
01-28-2011, 12:14 PM
Very nice!

Bayou Buck
01-31-2011, 10:25 PM
I nominated this mod for motm. BUT...I can't get the thumbs to show up in the search or "new threads" results. I looked in the forums, but i can't seem to find an answer. Please help! I'm running 3.8.1. Did I miss something simple? Thanks.

Scalemotorcars
02-18-2011, 08:21 PM
2. Is it possible to have it use a attachment first, if no attachment use img tag is no img tag use first image in post?

Tanks

Would love to see this functionality. :up:

Spinning9
02-18-2011, 08:52 PM
How this Work on 3.8.5?
I have Install but it doesnt work...

Or how can i Install this Plugin Manual?
i find only in readmy a upgrade.

g0rdy
02-19-2011, 03:57 AM
Would love to see this functionality. :up:


Ditto, it's almost pointless without it

Pilot iQ
02-21-2011, 03:40 AM
( Installed + 5 stars )

Very nice ,, thank you


- Is there a possibility to set the height ???

Kirschtorte
03-09-2011, 12:27 PM
Hello Null Parameter and sorry for my bad english :D

I got a new idea for future Features:

What if could see the latest "x" thumbnail-submissions in a user profile?
The "x" is adjustable in the AdminCP.

For an example: I create a new forum "gallery" and activate your AddOn "Thread Thumbnails" in this. Now, if somebody post a new article with picture-attachment, this attachement is also present in the users profile.

For an Example see this picture (see latest user gallery submissions)

QuickQuestion
03-12-2011, 11:28 PM
Edit: fixed. New question though.

QuickQuestion
03-13-2011, 06:55 AM
I've got it working, but why are the photos in an odd place? Is there a way to move them to the left of the thread name to keep it clean looking? Here is what it looks like for me now (attached).

The images are off to the right, and lower than I was hoping for. I'd like the threads to be compact, and it seems like it creates wasted space.

QuickQuestion
03-13-2011, 05:41 PM
No takes on this? I've trying to figure it out like a madman haha. I'm using the latest 4.1.2 do you think this has to do with it?

Sadie Frost
05-05-2011, 11:35 PM
( Installed + 5 stars )

Very nice ,, thank you


- Is there a possibility to set the height ???
I'd love to be able to set the height as well :)

Boofo
05-05-2011, 11:40 PM
I've got it working, but why are the photos in an odd place? Is there a way to move them to the left of the thread name to keep it clean looking? Here is what it looks like for me now (attached).

The images are off to the right, and lower than I was hoping for. I'd like the threads to be compact, and it seems like it creates wasted space.

Try using style="float:left;"

Matush
05-08-2011, 08:31 AM
Hello,
1.Does anyone know what settings to make the thumbnails display in the search, new thread.

I have set in the ACP as it should be, but do not display thumbnails in the search
(vb 3.8.5)

2. What code and where I need to add the thumbnails to be displayed in the statistics of each user when they go to the Find all threads started by. Is this possible?

//M

fahad_althobian
05-18-2011, 09:44 AM
Has been modified on the product and became without modifying templates

Is automatically modified

Wait for your comments

Annex has been modified as of May 20, 2011




:D

:D

Product was accompanied,

=============================
تم التعديل على المنتج بواسطة فهد الذبياني مبرمج عربي

واصبح المنتج يعمل بدون تعديل قوالب


:D

:D

انتظر تعليقاتكم
تم ارفاق المنتج

angeljs
09-30-2011, 01:00 PM
Was there ever a response on how to make this work in search results?

James T Brock
10-29-2011, 09:16 PM
Bug; If more than one image URL is posted on the same line this mod doesn't work. Anyway to fix this?

soner
12-05-2011, 01:25 AM
I wanna use thumbnails on tag pages. How can i do that?

v123shine
12-09-2011, 05:36 AM
Dear Null Parameter

I want to show thumbnail in my "HOME" vBadvanced CMPS v3.x

I can make the row and column for thumbnails, but i don't know how to show up the thumbnail.

This is the result:
https://vborg.vbsupport.ru/external/2011/12/21.png

Note: I'm using the thumbnail source: "Use Entered URL" in Thread Thumbnails module

https://vborg.vbsupport.ru/external/2011/12/22.png

Can you help me, please!

Thank you.

oxblood12
12-28-2011, 03:01 PM
thanks for add

CodeRed
01-12-2012, 05:10 PM
Im using 3.8.7... uploaded the product, made the template changes manually, turned off auto edits in cpanel, added sizes to all of images and applied it to work on one forum only.

For some reason thumbnails arent showing up on existing threads although if i create a new thread it will display the image... is there some sort of global thread update i need to do in order to get them to kick in and display?

Thanks.

testerv
01-22-2012, 05:58 PM
CodeRed, why did you change your templates manually? The latest version of this says the template changes are automatic.

Did you ever get it working in 3.8.7 for existing threads?

DEGE
01-26-2012, 05:01 PM
Hi everybody,

Is there any way to get this working in the Recent Threads module of VBA ?

Since VBA is my main page, it would be very nice to show thumbs there...

vijayninel
01-31-2012, 10:32 AM
I dont know if this has been posted before, but the mod wont work unless you have post icons enabled for the forum.

Chadi
02-01-2012, 10:43 PM
How do I completely uninstall this? I already uninstalled the plugin, but the empty column is still there.

http://www.talkjesus.com/streaming-multimedia/

What portion of threadbit do I remove?

Thanks.

Chadi
02-06-2012, 10:44 PM
Would appreciate help on this please.

ultimategeek
03-06-2012, 03:25 PM
This a fantastic idea

gmptp
03-18-2012, 02:15 PM
Anyone know how to get the attachment to be display for the lastpost?

lastpostby <- I want to get the attachment (thumbnail) to be display on the lastpost, that's the issue, becos the lastpost thread id is not the same as the thumbnail id becos not all the thread has thumbnail, so the thumbnail or attachment id and the lastpost thread id is mismatching, how to fix anyone knows?

I'm very sure can be done, just that some minor modification on showthread.php on the load attachment or some php file to query the attachmentid for the lastpost to display the attachment for the lastpost, the present mod thumb thread is to display the attachment for the threadpost which is working, but what I want is to display the attachment for the lastpost, not the threadpost.

Anyone has any idea how to display attachment for the lastpost? I'm willing to offer usd$50 to be pay via paypal for the solution.

Blueracer66
09-03-2012, 08:20 PM
I really need this! Can you please update this for version 3.8.7? Thanks!

fenris
10-03-2012, 01:42 PM
Hy,

is there a way, to make thumbnails in a better quality ?
The mod is running very fine, but the quality from the thubnails ist not so good.
Is there anybody with an idea to fix the problem ?

Best regards

Frank

pedrovazquez10
10-12-2012, 08:15 PM
its possible to view the images when the mouse is over the thumbnails?

thanks

cakirts
07-27-2013, 01:15 PM
thank you very much.

lasalle6969
08-21-2013, 10:00 PM
Great!!! Gracias!!

SBlueman
08-23-2013, 05:58 AM
How do you get this to work with search results and topic tag pages?

Powerlynx
01-22-2014, 03:46 AM
instead of having the icon on the left side of the thread list replaced with an image, can I keep that the way it is and have this thumbnail positioned in the middle of the thread in the index inbetween the thread starter info and the green subscription button? or to the Replies/Views column?

alghaamdi
02-14-2015, 01:53 AM
thanks ........

webnsn
04-16-2020, 07:57 AM
Hi

I have install but not working so uninstalled again

webnsn
04-27-2021, 11:57 AM
Hi

I have install but not working so uninstalled again

I have tried again and it is working.

Demo @ https://www.wikinewforum.com/forumdisplay.php?f=3&order=desc&page=2

Few questions
1. It is not taking from first pic but only if any link is added in the pic then only it is taking.
2. Size is also need to adjust manually.

webnsn
05-19-2021, 11:51 AM
Guys

I am back, Just one question.

I am able to see this in Desktop versions.

But for MOBILE I have a new Style for that this change is not able to display. Please suggest

webnsn
09-08-2021, 03:23 PM
Guys

Please help me. how to add for MOBILE Version??