Hi,
When sending a letter there is an option by the send button to "Notify {recipient} by email" which is not checked by default.
How to I make it on by default?
Thanks!
Hi,
When sending a letter there is an option by the send button to "Notify {recipient} by email" which is not checked by default. How to I make it on by default?
Thanks! |
Open /templates/base/mail_box_compose_message.html find: <label><input type="checkbox" id="notify_mail"/>__notify__</label> <label><input type="checkbox" id="notify_mail" checked/>__notify__</label> |
great, thanks! worked like a charm. (had to make the change to themail_box_compose_message.html from my template though for anyone else looking for this change too) |
Also needs to be done in the "mail_box_replay_message.html" file as well so it's selected on replies too... (also see a spelling error in the filename) |
The other file you are looking for is /templates/base/mail_box_replay_message.html Same line of code Michael |
This works like a charm :) I have also removed the other two options - is there anyway of hiding this notify option on the mailbox in CSS or something so the code still functions behind the scenes without actually removing the div tag? All for one and one for all....ah sod it who am i kidding! |
This works like a charm :) I have also removed the other two options - is there anyway of hiding this notify option on the mailbox in CSS or something so the code still functions behind the scenes without actually removing the div tag?
If there is an independent class/id on the div, then yes. If it is shared, then it would hide all. What you would need to do in that case is to go into the code and hide it using an inline style declaration, <div style="display:none;"> or you could add an independent style; which is the best way, <div class="hide_this"> and then add the class to the style sheets .hide_this { display:none; { Geeks, making the world a better place |
This is What I found in the code for the check boxes it appears it does have a shared class but I'm happen to hide them all. <div class="message_actions message_actions_compose">
<div class="message_actions_cnt bx-def-padding-sec">
<div class="messages_options">
<label><input type="checkbox" id="notify_mail"checked/>__notify__</label>
</div>
__compose_actions_buttons__
</div>
where would I find the CSS for this?
All for one and one for all....ah sod it who am i kidding! |
The easiest way is to use a programme that can search for text across files. I use PsPad but I think someone said that NotePad++ can do this as well. Just limit the search to the template directory and its subdirectories and search for the class name. Remember that the CSS might be copied to any third party templates which overrides the base css. Geeks, making the world a better place |
Thank you, works perfectly....;)) Mike |