I've been getting annoyed with how you must place something in the PM subject field in order to be sent so I figured out a small fix for the issue. This short tutorials will show you how to have a default subject in your PM subject field instead of having to be redirected back to the editor when you forget to type in a subject...
1. Navigate to your theme's templates > PM Templates > private_send template.
2. Find this segment of code:
3. Replace that segment of code with this:
This will make your subject field, "No Subject" by default and when you click it, the text is erased so you can type your own subject if needed.
If you want to make the default text different just change the red highlighted text
1. Navigate to your theme's templates > PM Templates > private_send template.
2. Find this segment of code:
<td class="trow1"><input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{$subject}" tabindex="3" /></td>
3. Replace that segment of code with this:
Quote:<td class="trow1"><input type="text" class="textbox" name="No Subject" size="40" maxlength="85" value="No Subject" onfocus="if(this.value == 'No Subject') { this.value = ''; }" tabindex="3" /></td>
This will make your subject field, "No Subject" by default and when you click it, the text is erased so you can type your own subject if needed.
If you want to make the default text different just change the red highlighted text
