Ninja Forms – change redirect URL based on API response?
How can we change the redirect_url for a redirect action based on the response from an API?
I have created a custom action (extending NF_Abstracts_Action
) that runs during submission with late
timing and calls an external API.
Based on that response I want to change the page being redirected to. I cam get the actions with NinjaForms()-form(2)-get_actions()
, but changing the redirect_url
of the redirect action in that array doesn’t alter the current flow.
Alternatively how can I send a querystring containing data from the API to the redirected page?
Also tried an alternate approach, of redirecting inside a WP Hook action
function ninja_test_action($form_data) {
error_log('inside wp hook action - about to redirect');
wp_redirect('https://wp.test');
}
add_action('ninja_test_action', 'ninja_test_action',10,1);
This fails with a console error: TypeError: Cannot read properties of undefined (reading 'nonce')
This testing is being performed on a fresh and clean install of WordPress 5.9 using a clean Underscores theme and only the Ninja Forms plugin installed.
Topic plugin-ninja-forms Wordpress
Category Web