Removing File Upload Fields from Notifications

add_filter( ‘wpforms_emails_notifications_field_ignored’, ‘wpf_ignore_email_fields’, 10, 3 ); function wpf_ignore_email_fields( $is_ignored, $field, $form_data ) { if ( empty( $form_data[‘id’] ) ) { return $is_ignored; } // TODO: Change `1` to your form ID. if ( (int) $form_data[‘id’] !== 1 ) { return…Continue reading

Removing the Header Image From Notification Emails of Specific Forms

/** * Remove header image from email notifications for specific form IDs. */ add_filter( ‘wpforms_emails_templates_general_set_initial_args’, ‘wpforms_remove_header_image_by_form_id’, 10, 2 ); function wpforms_remove_header_image_by_form_id( $args, $template ) { // List the form IDs that should NOT include a header image. $forms_without_header = array(…Continue reading