Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
Contact Form 7

wpcf7_ajax_json_echo Hook

Customize the AJAX JSON payload returned to the browser.

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);

Leave a reply

Your email address will not be published. Required fields are marked *