Hi Nootheme,
Previously I was able to disable the 'same as company location' using child theme - /framework/job/job_location.php and removing the following lines of code:
if ( ! empty( $location_term ) ) :
$company_location = true;
$checkbox_value = empty( $job_id ) ? 1 : get_post_meta( $job_id, $checkbox_id, true );
if ( $checkbox_value && empty( $value ) ) {
$value = array( $location_term );
}
?>
<input name="<?php echo $checkbox_id; ?>" type="hidden" value="0"/>
<?php endif;
I just realized this no longer works - can you help and advise how to disable this so employers posting a job always just see the job locations list?
Thank!