I’m using the latest version of the plugin.
The main problem is, that i receive applications and can’t assign applications to the appropriate ad.
Thanks in advance!
]]>I am using the Applications add-on and several 3rd party plugins and custom code.
I found this topic which seems to be identical to my problem but there was no solution.
Adding to this: the entire job-application.php template is not loading, it’s not a display issue. Although candidates_can_apply() is returning true.
Adding more to this: the get_the_job_application_method() returns false when the button does not show, and returns an object when it does (after updating in wp-admin)
]]>Is it possible to have the Apply button in your filter? I would like to have the possibility to select a couple of Product Categories and then press the Apply button.
I don’t want each click on a category in the filter to trigger a product search.
Regards,
Grzegorz
<?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?
]]>It seems that the problem with plugin-grouper disabling the APPLY button from bulk actions in the plugin list is still there. It’s really annoying to have to hide/unhide (for example) each of the plugins. For the basic bulk actions it could be deactivated but it’d be a real hassle. Can this be fixed?
thank you
Any ideas?
]]>