Version: 1.5 Gold, by SkyCatcher
Developer Last Online: Mar 2013
Category: Show Thread Enhancements -
Version: 3.6.4
Rating:
Released: 02-03-2007
Last Update: Never
Installs: 101
Uses Plugins Template Edits
Additional Files
No support by the author.
I have abandoned this modification as I find myself lacking time to do any additional modifications to get it 100% stable.
I would highly recommend that you check out this hack by magnus, as this one seems to be 100% AND looks great. I fell in love with it so I am using it myself
The only thing it doesn't do is give you a preview of the attachments, so you're welcome to keep the attachments part of this hack and use it in conjunction with magnus' hack.
I may just rewrite the attachments part of this hack and re-release it as a standalone.
Another odd thing, I am not sure if this is related to prior template alterations but when I double click in the thread title to involk the AJAX title editting, instead of the title of the thread becoming editable the small mousover image is replaced with an edit window which has the html code for that image
About the editing, it's explained in the 1st post of this thread (i.e. up top) where you remove a line of code.
Thanks, I edited my previous post as you wrote that.
I am having trouble getting this to display to my liking though.
I would like to have the window a defined size while still remaining scrollable. Many of my threads are quite long and with auto-resize the user has to scroll the entire main window as it extends far down. If I set a defined size, the window is the proper size but there are no internal scroll bars to scroll down within that window. Am I missing something or is that a limitation?
Thanks, I edited my previous post as you wrote that.
Many of my threads are quite long and with auto-resize the user has to scroll the entire main window as it extends far down. If I set a defined size, the window is the proper size but there are no internal scroll bars to scroll down within that window. Am I missing something or is that a limitation?
You can define a set height and width here (in the JS file)
Try playing with that conditional, for some reason all of them are not returning true.
It checks:
- ThreadIcons are on
- Your Usergroup is not in the usergroups you added to the exclude list
- Makes sure the hack is turned on
- and the forumID is not in the excluded list
only if ALL those return true it sets the colspan to 3 (which is what you need here).
Add the following under $navbar in the FORUMDISPLAY template to check if all the conditions return true:
Code:
<if condition="$show['threadicons']">Icons: True
<br />
<else />
Icons: False
<br />
</if>
<if condition="!is_member_of($vbulletin->userinfo, $postpreviewusergroups)">Not in Excluded Group: True
<br />
<else />
Not in Excluded Group: False
<br />
</if>
<if condition="$vbulletin->options[ajaxpostpreview_enable] == 1">
Mod Enabled: True
<br />
<else />
Mod Enabled: False
<br />
</if>
<if condition="(!(in_array($forumid, array($vbulletin->options['ajaxpostpreview_forums']))))">
Forum Not Excluded: True
<br />
<else />
Forum Not Excluded: False
<br />
</if>
Try playing with that conditional, for some reason all of them are not returning true.
It checks:
- ThreadIcons are on
- Your Usergroup is not in the usergroups you added to the exclude list
- Makes sure the hack is turned on
- and the forumID is not in the excluded list
only if ALL those return true it sets the colspan to 3 (which is what you need here).
Add the following under $navbar in the forumhome template to check if all the conditions return true:
Code:
<if condition="$show['threadicons']">Icons: True
<br />
<else />
Icons: False
<br />
</if>
<if condition="!is_member_of($vbulletin->userinfo, $postpreviewusergroups)">Not in Excluded Group: True
<br />
<else />
Not in Excluded Group: False
<br />
</if>
<if condition="$vbulletin->options[ajaxpostpreview_enable] == 1">
Mod Enabled: True
<br />
<else />
Mod Enabled: False
<br />
</if>
<if condition="(!(in_array($forumid, array($vbulletin->options['ajaxpostpreview_forums']))))">
Forum Not Excluded: True
<br />
<else />
Forum Not Excluded: False
<br />
</if>
If they're not all true, it won't span 3 columns.
Icons: False
Not in Excluded Group: True
Mod Enabled: True
Forum Not Excluded: True