Hook resume_manager_resume_submitted triggers too early
-
We are using the hook
resume_manager_resume_submitted
to trigger a redirect on form submission. It looks like this hook has been moved in a newer version, and now it fires too early (beforeupdate_resume_data
, which we have some other custom stuff hooked into).I think this is because
resume_manager_resume_submitted
gets fired insave_resume
via post meta updateupdate_post_meta( $this->resume_id, '_public_submission', true );
which triggersWP_Resume_Manager_Resume_Lifecycle::finalize_submission
(as that is hooked into any change to the _public_submission meta).Is this expected behaviour, and if so is there a better hook we can use that definitely runs right at the end of submission, after everything is saved?
- The topic ‘Hook resume_manager_resume_submitted triggers too early’ is closed to new replies.