• Resolved chrismartins29

    (@chrismartins29)


    I would like to redirect the user to a submission confirmation page at the point of application submission, is this something you can help with?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support vidyakv

    (@vidyakv)

    Hi,

    Thanks for reaching out to us.

    We currently, don’t support this feature via UI. But, you can do the same with some code customizations.

    function awsm_job_application_submitted() {
    global $awsm_response;
    $awsm_response['success'][] = '<script>window.location = "example.com";</script>'; // Replace example.com with the required URL
    }
    add_action( 'awsm_job_application_submitted', 'awsm_job_application_submitted' );

    Please read the comments in the code and test it and let us know!

    External Resources: https://wp-content.co/add-custom-code-to-your-wordpress-websites/

    Regards,
    Vidya K v

    Thread Starter chrismartins29

    (@chrismartins29)

    Thanks! Tested and working perfectly ??

    Plugin Support vidyakv

    (@vidyakv)

    Hi @chrismartins29,

    Awesome! Happy we could help you out. Between if you have a moment, I would very much appreciate it if you could quickly rate the plugin on WordPress, just to help us spread the word.

    Thank you
    Vidya K V

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Application submission actions’ is closed to new replies.