• 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)
  • Thread Starter MassimoM

    (@xma)

    Now i resolved with css

    .resume-submitted{
    	@extend .text-success;
    	& + .applying_for{
    		display: none;
    		visibility: hidden;
    		& + .job-manager-application-wrapper{
    			display: none;
    			visibility: hidden;
    		}
    	}
    }
    

    But i don’t like this solution.

    accept suggestion.

    Thanks

    Plugin Author Brandon Kraft

    (@kraftbj)

    Code Wrangler

    Howdy,

    These forums at www.ads-software.com are provided to us exclusively for plugins distributed from www.ads-software.com. The premium add-ons are supported for users with active licenses via https://wpjobmanager.com/support/

    At the moment, that’s the best way to do it. I’ve opened an enhancement request for us to consider making the filterable.

    Cheers!

    Thread Starter MassimoM

    (@xma)

    thanks for reply.
    I have an active license but on support page i don’t see any ticket system!

    Plugin Author Brandon Kraft

    (@kraftbj)

    Code Wrangler

    You’ll need to be logged in with the account that you used to purchase the account. Please do drop us a note at https://wpjobmanager.com/contact/ and we can make sure everything is set correctly on your account.

    Cheers!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Confirmation Page after submitting resume’ is closed to new replies.