Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Mike Jolley

    (@mikejolley)

    I’m not sure why you’d want to do that? How is applying related to posting a job?

    I think he wants to have the button redirect to the actual job posting URL at another website.

    @vanchalakhotia
    That is already possible. You just need to enter the URL in the field where you could normally also add the Email.

    Go to Job Listings > Settings > Job Submission you’ll find a setting called Application method. This let’s you control what a user can submit via the job submission form. Set it to one of the following:

    Email addresses only – Employers must enter a valid email address for candidates to apply via.
    Website URLs only – Employers must enter a valid URL for candidates to apply via.
    Email addresses or Website URLs – Employers can use either of the above.

    Depending on whats used (URL or email) determines how the “Apply for job” area looks on your site – it will show either a mailto: link, or a website link.

    https://wpjobmanager.com/document/customising-job-application-process/

    Thread Starter vanchalakhotia

    (@vanchalakhotia)

    Thanks Mike and Nelson.

    I was able to redirect to Job Submission form by changing the following code and changing the href in (a tag) of job-application.php

    <?php if ( $apply = get_the_job_application_method() ) :
    if ( $apply->type === ‘url’ ) {
    $application_href = $apply->url;
    } elseif ( $apply->type === ’email’ ) {
    $application_href = sprintf( ‘mailto:%1$s%2$s’, $apply->email, ‘?subject=’ . rawurlencode( $apply->subject ) );
    }
    ?>
    <div class=”application”>
    <?php _e( ‘Apply for job’, ‘wp-job-manager’ ); ?>
    </div>
    <?php endif; ?>

    (https://manta.websitewelcome.com/~itrainconsultant/itrainf/post-a-job-2/?preview=true) to your URL.

    Thanks.

    Regards,
    Vancha

    Hi,

    Apply for job button is visible for one job only.For remaining jobs it is not visible.May I know the reason please help me

    Below is my website url.In that for abcd company the apply for job is visble.For remaining jobs it is not visible
    https://www.digitalmob.in/

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Apply for job button’ is closed to new replies.