Is filter “wpforms_email_message” gone?
-
Hello,
I’m having a quite complex form modification before mail sending using filter “wpforms_email_message” and I’m a bit surprised as it does not work anymore, while I developed on it just two or three weeks ago. As far as I can see (trying to write text to log) the function I registered on that filter is not called anymore.
I’m using the lite version of this plugin. If the filter is removed from lite I cannot find info in change logs or documentation.Minimal example in childs function.php:
error_log("register my_wpf_function"); function my_wpf_function($message, $emails) { error_log("called my_wpf_function"); return $message; } add_filter('wpforms_email_message', 'my_wpf_function', 10, 2);
Regards
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Is filter “wpforms_email_message” gone?’ is closed to new replies.