MyBB Community Forums

Full Version: PM - Options
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys

How do i disable "Save a Copy" & "Request Read Reciept" for PM's that are both ticked by default?

Ta
no one knows then Sad ?
From the private_send template:

<label><input type="checkbox" class="checkbox" name="options[signature]" value="1" tabindex="5" {$optionschecked['signature']} />{$lang->options_sig}</label><br />
<label><input type="checkbox" class="checkbox" name="options[disablesmilies]" value="1" tabindex="6" {$optionschecked['disablesmilies']} />{$lang->options_disable_smilies}</label><br />
<label><input type="checkbox" class="checkbox" name="options[savecopy]" value="1" tabindex="7" {$optionschecked['savecopy']} />{$lang->options_save_copy}</label><br />
<label><input type="checkbox" class="checkbox" name="options[readreceipt]" value="1" tabindex="8" {$optionschecked['readreceipt']} />{$lang->options_read_receipt}</label><br />

If you just want to stop them being ticked, remove {$optionschecked['savecopy']} and {$optionschecked['readreceipt']}, or remove the full line of HTML for each to remove the option completely.
thanks dude, will give it a try Smile

Sorted, thanks fella Big Grin