PDA

View Full Version : pm popup, mandatory.


Xelation
03-22-2002, 09:17 PM
Can someone make the pm popup box come up all the time... the users dont have a choice, it automatically comes up whenever they have a new pm. Hopefully someone will direct me to a thread that already has this.

Zzed
03-22-2002, 10:56 PM
I occasionally enter the following command:

update user set pmpopup = 1;

I am sure this is a template hack. The field needs to be hidden and the value be set to true in the template. Don't know which one though. :o

Neo
03-22-2002, 11:03 PM
yup.. just take the option for them to update that out of the user options. and use that query.

Scott MacVicar
03-23-2002, 06:10 AM
well if you remove it from the template then no value will be inputed and it will be presumed to be 0.

So remove it from the template and then do the following.

open up member.php and register.php

look for

$pmpopup=iif($pmpopup=="yes",1,0);

change to

$pmpopup=1;