Thread Query |
Author: |
Message: |
ddunk
Veteran Member
Posts: 1228 Reputation: 51
35 / /
Joined: Mar 2004
|
RE: Thread Query
quote: Originally posted by lou_habs
its cause our boards are still old mybb now has a number in every post @ the top right that says uour post number in that thread and it is also a link, so you can just bookmark that link
This version does too. Click the date/timestamp under your avatar and postcount.
|
|
11-09-2005 03:17 PM |
|
|
qgroessl
Veteran Member
Posts: 1615 Reputation: 22
33 / – /
Joined: Jul 2005
Status: Away
|
RE: Thread Query
lou_habs just wants the upgrade to the newer MyBB ...
quote: Originally posted by Mentality
feel free to call me dumb
You're dumb ...... just kidding... But I do like the idea... even though there's already a solution
|
|
11-09-2005 03:38 PM |
|
|
Mentality
Full Member
The Best Representation OF me IS ME!
Posts: 490 Reputation: 19
39 / /
Joined: Jun 2005
|
O.P. RE: Thread Query
quote: Originally posted by qgroessl
You're dumb ...... just kidding... But I do like the idea... even though there's already a solution
Me to, it would just make things a little simpler'
|
|
11-09-2005 04:07 PM |
|
|
-dt-
Scripting Contest Winner
;o
Posts: 1819 Reputation: 74
36 / /
Joined: Mar 2004
|
RE: Thread Query
suprised no ones shouted greasemonkey yet this would be a fair simple script
when someone clicks the special "view your last post in this thread" button that the script will add
download http://shoutbox.menthix.net/basicsearch.php?action=search&uid=USER_ID
find what thread the person was going to vist
do a quick regexp to find the correct #pid
redirect the person to that post.
Happy Birthday, WDZ
|
|
11-09-2005 10:26 PM |
|
|
WDZ
Former Admin
Posts: 7106 Reputation: 107
– / /
Joined: Mar 2002
|
RE: Thread Query
-dt-
I wouldn't mind adding a new function to showthread.php to find a member's last post in a thread. There's already a way to find the last post board-wide ( example), so limiting that to a specific thread wouldn't be difficult.
As for adding a link to the new function, well, maybe dt should handle that.
quote: Originally posted by Mentality
Attachment: Demo.png (124.26 KB)
lol! That's the worst link placement suggestion ever...
This post was edited on 11-10-2005 at 04:55 AM by WDZ.
|
|
11-10-2005 04:52 AM |
|
|
WDZ
Former Admin
Posts: 7106 Reputation: 107
– / /
Joined: Mar 2002
|
RE: Thread Query
OK, I did the coding...
Usage example: showthread.php?action=lastpost&tid=48930&uid=4
|
|
11-10-2005 05:38 AM |
|
|
Mentality
Full Member
The Best Representation OF me IS ME!
Posts: 490 Reputation: 19
39 / /
Joined: Jun 2005
|
O.P. RE: RE: Thread Query
Attachment: philandgrant.png (112.2 KB)
This file has been downloaded 222 time(s).
This post was edited on 11-10-2005 at 10:25 AM by Mentality.
|
|
11-10-2005 10:24 AM |
|
|
rav0
Veteran Member
i have an avatar
Posts: 1419 Reputation: 29
35 / /
Joined: Aug 2003
|
RE: RE: Thread Query
quote: Originally posted by WDZ
quote: Originally posted by Mentality
Attachment: Demo.png (124.26 KB)
lol! That's the worst link placement suggestion ever...
I'd like to see it replace or go next to the current last post link, just go to first unread.
| |
(\ /)
(O.o)
(> <)
This is Bunny. Copy Bunny into your signature to help him on his way to world domination
|
|
11-12-2005 05:01 AM |
|
|
Th3rmal
Veteran Member
Peek-a-boo! I see you!!
Posts: 1226 Reputation: 26
32 / /
Joined: Aug 2005
|
RE: Thread Query
that would be a good suggestion, especially with really popular/busy topics (eg. Windows Live Messenger (New official name for MSN Messenger 8.0)) which has 20 pages. another suggestion is that you can make specific threads have more priority, like mayb you could have the threads that you visit most in the different sections or all of them in the latest post section at the top underneath the stickeys, then the rest of the threads in the usual order, if any1 knows what i mean...
You have the intellect comparable to that of a rock. Be proud.
|
|
11-12-2005 05:24 AM |
|
|
-dt-
Scripting Contest Winner
;o
Posts: 1819 Reputation: 74
36 / /
Joined: Mar 2004
|
RE: Thread Query
quote: Originally posted by rav0
I'd like to see it replace or go next to the current last post link, just go to first unread.
something like...
code:
var lastLinks = document.evaluate('//a[contains(.,"»")][contains(@href,"showthread.php?tid=")]', document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
var href;
for(var i=0;i<lastLinks.snapshotLength;i++){
href = lastLinks.snapshotItem(i).getAttribute('href');
lastLinks.snapshotItem(i).setAttribute('href',href+ '&uid=4');
}
would do that...
GM script: http://darktempler.be/msgplusforumlastpostthin.user.js
This post was edited on 11-12-2005 at 05:37 AM by -dt-.
Happy Birthday, WDZ
|
|
11-12-2005 05:36 AM |
|
|
Pages: (2):
« First
«
1
[ 2 ]
Last »
|
|