Skip to content

Instantly share code, notes, and snippets.

@landbryo
Last active November 19, 2018 17:57
Show Gist options
  • Save landbryo/a4acd5c1f758c831532f7dd1aab2d79f to your computer and use it in GitHub Desktop.
Save landbryo/a4acd5c1f758c831532f7dd1aab2d79f to your computer and use it in GitHub Desktop.
Customize the from address for Enfold forms.
/////////////////////////////
// ENFOLD FORM CUSTOM FROM //
/////////////////////////////
function avf_form_from_mod($from, $new_post, $form_params) {
$from = "[email protected]";
return $from;
}
add_filter('avf_form_from', 'avf_form_from_mod', 10, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment