Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #930910

    Hi, is there any way to format the enfold contact form notification to admin?

    #931006

    Hey Rick,
    Sorry I’m not sure I understand, can you provide a screenshot of the notification?

    Best regards,
    Mike

    #931204

    Hi Mike, this would be basically the email that the admin receives with the submitted fields, I’d like to format the email the recipient receives.

    #931243

    Hi,
    Sorry, there is not a way to format the email that the admin or recipient receives without editing the theme files. That is change the layout. But with the screenshot of the email address field, I wonder if the formatting you are referring to is changing the email address that the user sees? We may have a fitter for that:

    // change from address
    add_filter('avf_form_from', 'avf_form_from_mod', 10, 3);
    function avf_form_from_mod($from, $new_post, $form_params) {
        $from = " (Email address hidden if logged out) ";
        return $from;
    }

    This code would be added to functions.php & adjust the address above.

    Best regards,
    Mike

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