Hello,
we have a lot of Contact forms on our website. We will use the Autoresponse Form for de Formulars when we are on holiday.
is there a posibility to change the autoresponse text for all forms on one place?
maybe by hook?
Thank´s for help
Hey Tobias!
I haven’t tested it but maybe something like this would work.
add_filter( 'avf_form_autorespondermessage', 'enfold_customization_auto_message', 10, 1 );
function enfold_customization_auto_message( $message ) {
$message = "test";
return $message;
}
Regards,
Elliott
Hey Elliott,
thank´s for your quick answer.
Look´s for a good and easy solution. but i need the function for my client, e.g. a field to put the message in a message box in the backend. i think i need a solution with a hook, or? do you have a tip to get this solution?
Thank´s for your help.
Hi!
I’m afraid there isn’t an easy way to do that with Enfold, i’d suggest you using a more specialised tool like CF7 (this has that feature out of the box):
https://wordpress.org/plugins/contact-form-7/
Regards,
Josue
Hi Josue,
you have misunderstood. enfold have an easy way for every contactform like contact form7 – look here: https://dl.dropboxusercontent.com/s/mgj8o0w9v4hwja2/2015-07-25%20at%2005.20.png?dl=0
We look for a solution to change a autoresponse-text for all contactforms on one place. I have not see this solution in the contact form 7 plugin. Or do you know another plugin.
Regards,
Tobias
Hi Tobias!
I see, one thing you could do is create a custom Options page with a field for your client to fill, then use it with Elliot’s code.
Cheers!
Josue
Thank´s for help!