Version: 1.5, by M1th
Developer Last Online: Nov 2023
Version: 3.5.0
Rating:
Released: 09-11-2005
Last Update: 09-12-2005
Installs: 39
Template Edits
Additional Files
No support by the author.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Plugin title: Jump to Your Last Post in a Thread
Author: M1th
Site: http://www.cosforums.com Plugin Version: 1.5 for vBulletin 3.5 RCX
For vB 3.0.x version see this thread.
For vB 3.5 Hack Version 1.0 see this thread.
For vB 3.6.x version please see this thread.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
What this does:
In huge threads, having to search through pages and pages for your last post is a pain in the neck so I've decided to put an end to this with my simple plugin.
Assuming that a user has posted in a thread, when the icon is clicked (displayed on forum display, next to the attachment/sticky icons) it'll lead the user to their latest post.
-------------------
Installation time: No more than 3 minutes I'd say.
Files to edit: 1 (none)
Templates to edit: 1 (threadbit)
Images to add: 1 (lastupost.gif - https://vborg.vbsupport.ru/attachmen...chmentid=34387)
Hey man that's great.
I've been trying to figure out how to fix my little clock mod.
It works fine except for the search/new post part where it shows on every thread.
I'm wondering if that code could be modified to work on this as well?
threadbit code for clock..
PHP Code:
<!-- ---------------------- clock ------------------------------- -->
<if condition="$thread['dateline']<(TIMENOW-86400*180) AND THIS_SCRIPT <> 'search'"><img class="inlineimg" src="http://yourdomain.com/forum/images/smilies/clock.gif" alt="This thread was started more than 6 months ago"></if>
<if condition="THIS_SCRIPT === 'search' AND (TIMENOW-86400*180)"><img class="inlineimg" src="http://yourdomain.com/forum/images/smilies/clock.gif" alt="This thread was started more than 6 months ago"></if>
<!-- ---------------------- /clock ------------------------------- -->
Hey man that's great.
I've been trying to figure out how to fix my little clock mod.
It works fine except for the search/new post part where it shows on every thread.
I'm wondering if that code could be modified to work on this as well?
threadbit code for clock..
PHP Code:
<!-- ---------------------- clock ------------------------------- -->
<if condition="$thread['dateline']<(TIMENOW-86400*180) AND THIS_SCRIPT <> 'search'"><img class="inlineimg" src="http://yourdomain.com/forum/images/smilies/clock.gif" alt="This thread was started more than 6 months ago"></if>
<if condition="THIS_SCRIPT === 'search' AND (TIMENOW-86400*180)"><img class="inlineimg" src="http://yourdomain.com/forum/images/smilies/clock.gif" alt="This thread was started more than 6 months ago"></if>
<!-- ---------------------- /clock ------------------------------- -->
Are you trying to make it show up for member's own threads only?
If so, wrap the clock code around
HTML Code:
<if condition="$thread['dot_count'] AND $bbuserinfo['userid']"></if>