Redirecting Apply Now button directly to the website
-
After WP Job Manager and the WP Job Manager – Applications plugin updated the code found at https://wpjobmanager.com/document/customising-job-application-process/ stopped working. I tried copying the following code in to the job-applications.php file and it also did not work.
<?php if ( $apply = get_the_job_application_method() ) : ?>
<?php if ( ‘url’ === $apply->type ) : ?>
<div class=”job_application application”>
url ); ?>” class=”application_button button” target=”_blank” rel=”nofollow”>Apply Now
</div>
<?php else : ?>
<?php wp_enqueue_script( ‘wp-job-manager-job-application’ ); ?>
<div class=”job_application application”>
<?php do_action( ‘job_application_start’, $apply ); ?><input type=”button” class=”application_button button” value=”<?php _e( ‘Apply for job’, ‘wp-job-manager’ ); ?>” />
<div class=”application_details”>
<?php
/**
* job_manager_application_details_email or job_manager_application_details_url hook
*/
do_action( ‘job_manager_application_details_’ . $apply->type, $apply );
?>
</div>
<?php do_action( ‘job_application_end’, $apply ); ?>
</div>
<?php endif; ?>
<?php endif; ?>Can the https://wpjobmanager.com/document/customising-job-application-process/ documentation be updated or can someone tell me which code to use now?
The page I need help with: [log in to see the link]
- The topic ‘Redirecting Apply Now button directly to the website’ is closed to new replies.