Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1115178

    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

    #1115346

    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

    #1115373

    Hi,

    Great, I’m glad that you found a solution and thanks for sharing. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.