Confirmation Page after submitting resume
-
Hi to all, i have little trouble.
Site flow:
job page > apply button > send resume > go to resume submit page > submit resume (i removed the preview step) and into the confirmation page i have another button for apply..the code that genrete the done page is in wp-job-manager-resumes/includes/forms/class-wp-resume-manager-form-submit-resume.php line 857 :
/** * Done Step */ public function done() { do_action( 'resume_manager_resume_submitted', $this->resume_id ); get_job_manager_template( 'resume-submitted.php', array( 'resume' => get_post( $this->resume_id ), 'job_id' => $this->job_id ), 'wp-job-manager-resumes', RESUME_MANAGER_PLUGIN_DIR . '/templates/' ); // Allow application if ( $this->job_id ) { echo '<h3 class="applying_for">' . sprintf( __( 'Submit your application to the job "%s".', 'wp-job-manager-resumes' ), '<a href="' . get_permalink( $this->job_id ) . '">' . get_the_title( $this->job_id ) . '</a>' ) .'</h3>'; echo do_shortcode( '[job_apply id="' . absint( $this->job_id ) . '"]' ); } }
How can remove the button and the h3 tag ???????????
There isn’t any hook of filter here….?
Any suggestion?Thanks in advacne
Max
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Confirmation Page after submitting resume’ is closed to new replies.