Hello
im looking to Hide the Notify by email check box on the compose message window but still leaving the code active as i have it checked by default.
all messages on my site should be sent by email without the option to uncheck it otherwise members wont know they have a message on the website.
can anyone help?
Regards
Chris
All for one and one for all....ah sod it who am i kidding! |
You could change the type to hidden input; see the dolphin form info at http://www.boonex.com/n/dolphin-8-form; it is for Dolphin 8 but mostly applies to Dolphin 7; if there is one for Dolphin 7 I don't know where it is located as no one has told me.
The other way is to hide it with CSS.
Geeks, making the world a better place |
do you mean on the edit / join form? if so do the following :
pages builder > Profile Fields > remove 'EmailNotify' off page !
Your users will no longer see this option ;)
DedicatedServer4You.com -- BIGGEST Range of Dedicated Servers at the Lowest Price! |
I thought he was talking about the internal message system, Dolphin internal email, when you compose a message to a member, there is a checkbox with notify X by email. Geeks, making the world a better place |
oh I read it wrong .. sorry !
I quickly read title and not entire post and thought he meant the emailnotify on the join form / profile edit form ... then my solution works ... .reading it a second time I see he is not asking what I thought
DedicatedServer4You.com -- BIGGEST Range of Dedicated Servers at the Lowest Price! |
04:40 in the morn and my brain must be on last efforts ! .... All I saw was 'email notify' ffs ...
sorry again
DedicatedServer4You.com -- BIGGEST Range of Dedicated Servers at the Lowest Price! |
I want to keep the action Live as i have the check box by default checked to send notification of message via email, and have hidden the other two option from the compose screen, but i dont want to mess up the send notification by removing the same code for this one.
is there any CSS way to just hide the Checkbox on the compose page without stopping the php code from actively working?
Chris
All for one and one for all....ah sod it who am i kidding! |
That checkbox has an id attached to it; id="notify_mail". Add an ID to the general css for the template you are using,
#notify_email {
display:none;
{
Go into the template and remove the part that adds "Notify {0} by e-mail".
clear caches.
Geeks, making the world a better place |