PDA

View Full Version : Mini-Hack: Improved PM Popup JavaScript


TWTCommish
15 Jan 2002, 15:26
Alright, this is pretty straightforward. Using this, your users will be redirected right to their most recent PM, rather than just their Inbox. Furthermore, you'll be able to use the username and title of the message in the popup. Only known downside: if they have more than one PM, it just takes them to the most recent one. I might work on this later to let them know that they've got a few waiting for them, but I've found that this is a very minor problem that rarely comes up.

This is in the Beta forum for one simple reason: I had trouble putting it together, and strongly suspect there's an easier way to do this. I figured I'd take a chance and post it anyway. Started off just for my own board, but I found it so useful I thought I'd post it. Here's how it's done:

Open global.php in your main forums directory. Find this:



Code:
---------------
Code is only visible to licensed users, and only when logged into the forums.
---------------



RIGHT after it (before the eval() line), put this:



Code:
---------------
Code is only visible to licensed users, and only when logged into the forums.
---------------



Save and upload. Then, edit the template head_newpm. You can now use $pm_popup_id, $pm_popup_username, and $pm_popup_title within this template to refer to the ID of the PM, the username of the person who sent it, and the title of the message.

I'm sure you can all figure out for yourselves from then on how to get it to redirect and all that. Here's the template I'm using:



Code:
---------------
Code is only visible to licensed users, and only when logged into the forums.
---------------


Enjoy! Screenshot attached. :) Please let me know if I'm being a moron, if I've missed something, etc.

Scott MacVicar
15 Jan 2002, 16:40
This only shows the last pm though you could have had multiple, anyway as your onyl selecting one use query_first instead of query and then fetch array.



Code:
---------------
Code is only visible to licensed users, and only when logged into the forums.
---------------



can be


Code:
---------------
Code is only visible to licensed users, and only when logged into the forums.
---------------

TWTCommish
15 Jan 2002, 16:44
Ah, I see. Well, I'm glad no larger problems exist. Is it particularly faster either way? I've edited the original post anyway.

And yeah, I'm aware of it taking you to the latest one. Hence this, from my post. Maybe you missed it. :)

Only known downside: if they have more than one PM, it just takes them to the most recent one. I might work on this later to let them know that they've got a few waiting for them, but I've found that this is a very minor problem that rarely comes up.

ptbyjason
16 Jan 2002, 17:04
Thanks, I thought about this a while back, but I didn't think it was possible.

TWTCommish
16 Jan 2002, 17:25
Naw, 'tis very possible. I've been trying to have it detect whether there's more than one, and display the typical message and all that...but it's giving me a hard time, even though it seems like it ought to work. If I get it working, I'll be sure to post it as a hack. :)