I can confirm that this plugin slows WordPress substantially. With it enabled performance is worse!
I’ve added this on line 463:
add_filter(‘Forms3rdPartyIntegration_get_submission’, ‘fix_3rdparty_slashes’, 20, 2);
function fix_3rdparty_slashes($post, $form) {
return stripslashes_deep($post);
}
What else do I need to do from this point?