• Resolved RedTiger

    (@redtiger)


    Hello,

    We have some employers who want to receive postal applications only. Is there a way to make the Application email/URL field on the job submission page optional so that they can still submit their job adverts?

    Many thanks

Viewing 1 replies (of 1 total)
  • Plugin Contributor Richard Archambault

    (@richardmtl)

    Hi!

    Use this snippet on your site (I suggest using this plugin: https://www.ads-software.com/plugins/code-snippets/):

    add_filter( 'submit_job_form_fields', function( $fields ) {
      $fields['job']['application']['required'] = false;
      
      return $fields;
    } );

    This makes the “Application email/URL” field optional in the Job Submission form. If they don’t fill it out, then the Apply button won’t be displayed on the job listing. The Job Listing creator will need to make sure that they include the postal address in the Job Listing description.

Viewing 1 replies (of 1 total)
  • The topic ‘Job Submission Form – “Application email/URL” field’ is closed to new replies.