Contact Form 7 Tutorial Series (40/100). Prefer one article? Read the complete Contact Form 7 tutorial.
Short description
Useful for adding custom response data your front-end JS can consume.
ajax_json_echo sketch
add_filter('wpcf7_ajax_json_echo', function ($response, $result) {
$response['acme_code'] = 'ok';
return $response;
}, 10, 2);