Redirecting to a page after form submission
WP Job Openings PRO supports changing the form submission type. You can access this option from Settings > Form > General > Form submit confirmation.
Using Code Snippets
Please go to your child theme’s functions.php file (we recommend child theme instead of the main theme since when the main theme is updated the changes won’t be lost) and add this code. You can also use any code snippets management plugin for easily adding the below code.
function awsm_job_application_submitted() { global $awsm_response; $awsm_response['success'][] = '<script>window.location = "<a href="http://www.example.com/">example.com</a>";</script>'; // Replace <a href="http://www.example.com/">example.com</a> with the required URL } add_action( 'awsm_job_application_submitted', 'awsm_job_application_submitted' );
External Resources
https://wp-content.co/add-custom-code-to-your-wordpress-websites/