• Resolved anouk_27

    (@anouk_27)


    The application button needs to point to our application form *We are a mediation agency for internships in South Africa, so for each internship vacancy they need to fill out an application form.*

    Hope that is making more sense now, so my question is where do I need to place the url of the application form within that code.

    Many thanks.

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

    I have updated the job-application.php file as per below:

    As an example of customisation, a common request is to just make the ‘button’ link to the website or email address, rather than toggling open the instructions. This would be a simple case of overriding job-application.php and using this code inside it:
    <?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; ?>

    Where do I need to paste the URL?

    The page I need help with: https://investorsclubs.co.za/BE/job/junior-project-manager-sales-events-firm-cape-town/

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