• Resolved Mitos2222

    (@mitos2222)


    Hello, is there a way to Redirect to a page after sending the job offer?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Could you share a bit more about what you had in mind for this?

    I will note, we have a code snippet that can be used to redirect to the Job Dashboard after submitting a job. You can use the Code Snippets plugin to implement this on your site.

    But if you had something else in mind, please let us know!

    Thread Starter Mitos2222

    (@mitos2222)

    Thanks Mike for your response, but my idea is to redirect to another website after sending the job offer

    Plugin Support Elizabeth (a11n)

    (@helizabethan)

    Hi @mitos2222,

    It seems you want to redirect users to another website after they submit a job application. We have a custom snippet to handle this. Here is the snippet –

    add_action( 'new_job_application', function( $application_id, $job_id ) {
    if ( is_object( $job_id ) ) {
    // We're in WP core's hook.
    return;
    }
    wp_safe_redirect( home_url( '/page-success-application' ) );
    exit;
    }, 999, 2 );

    You can replace home_url( '/page-success-application' ) with the URL you want to redirect the user to.

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.