PDA

View Full Version : Changing Private Message Defaults....


WoodiE
12-18-2002, 06:49 PM
Is there anyone to change the default setting of a Private Message? Such as making:

Show Signature
Save a copy
Request Read Receipt

UNchecked?

Right now all those options have are checked each tiem a user sends a PM. Its been requested that they not be, as most have to uncheck them each time they send a PM.

Any suggestions?

-WoodiE

WoodiE
12-19-2002, 02:54 AM
anyone?

Logician
12-20-2002, 09:12 AM
Show Signature
This is configured according to user's signature settings so I dont suggest disabling it hard coded but if you still want to do here is how:
edit private.php, find:
eval("dooutput(\"".gettemplate("priv_sendprivmsg")."\");");

before that add:
$signaturechecked = '';


Save a copy

edit template priv_sendprivmsg find:
<input type="checkbox" name="savecopy" value="yes" checked>

replace as:
<input type="checkbox" name="savecopy" value="yes">


Request Read Receipt
edit template priv_requestreceipt find:
<br><input type="checkbox" name="pmreceipt" value="yes" checked> <b>Request Read Receipt:</b> Allows you to check whether your message has been read by the recipient.

replace it as:
<br><input type="checkbox" name="pmreceipt" value="yes"> <b>Request Read Receipt:</b> Allows you to check whether your message has been read by the recipient.

Fordaz
02-25-2004, 12:05 PM
For the "Request Read Reciept" should it not be value="no"? There seems to be no change between the codes you posted.

Logician
02-25-2004, 06:39 PM
there is.. it lacks "checked" ;)