Quote:
Originally Posted by Cybershaolin
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:
Code:
<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:
Code:
<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
Code:
<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
Code:
<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.