Hi guys
I’ve seen a few threads on this but they all seem quite old. To change the AutoResponder Subject Line from the Enfold Contact Form, is there any way I can do this in my Child Theme Functions file?
If so what would the code be?
Thanks
Hi there
Looks like I have this sorted OK with this code…
add_filter( ‘avia_contact_form_args’, ‘avia_contact_form_args_mod’, 10, 1 );
function avia_contact_form_args_mod( $form_args ) {
$form_args[‘autoresponder_subject’] = __(‘Thank you for signing up for your 15 minute discovery call!’,’avia_framework’ );
return $form_args;
}
Cheers