The Arcive of vBulletin Modifications Site. |
|
Details »»
|
|||||||||||||||||||||||||
How can I change it so that when I (or a user) receives an email notification, it gives the actual URL (including #post) so that when you click on it, it goes directly to the message you haven't read. Now you have to wade through all the messages (and if you have a 30+post thread - that's a lot of messages).
Show Your Support
|
|||||||||||||||||||||||||
| Comments |
|
#2
|
|||
|
|||
|
Try this,
Open up the "notifyemail" template and change this line: Code:
$bburl/showthread.php?threadid=$threadid Code:
$bburl/showthread.php?threadid=$threadid#$postid ~Chris |
|
#3
|
|||
|
|||
|
After looking more closely I dont think that will work for multipage threads
![]() You could do this: Code:
$bburl/showthread.php?goto=newpost&threadid=$threadid Maybe something like this would work: Code:
$bburl/showthread.php?goto=newpost&threadid=$threadid#$postid ~Chris |
|
#4
|
|||
|
|||
|
change the line in the notifyemail template to this:
Code:
$bburl/showthread.php?threadid=$threadid&goto=newpost [Edited by rangersfan on 08-09-2000 at 12:34 AM] |
![]() |
|
|