This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* This hides the gray box above job listings output */ | |
.job_filters .search_jobs { | |
display: none; | |
} | |
/* This hides the "Search Completed. Found X Matching Records." and the RSS & Reset Links */ | |
/* !important is required as javascript code unhides this element after results are returned */ | |
.job_filters .showing_jobs { | |
display: none !important; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function smyles_populate_post_titles( $section_data, $section_id, $section ) { | |
if ( ! isset( $section_data['fields'] ) || ! is_array( $section_data['fields'] ) ) { | |
return $section_data; | |
} | |
foreach ( $section_data['fields'] as $field_id => $field ) { | |
if ( $field['search_source'] == 'job_title' ) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'field_editor_workscout_overview_output_csv', '__return_false' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function smyles_custom_posts_search($search, $wp_query) { | |
global $wpdb; | |
if (empty($search)) { | |
return $search; // skip processing - no search term in query | |
} | |
$q = $wp_query->query_vars; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.marker-cluster-small { | |
background-color: rgba(181,226,140,.6) | |
} | |
.marker-cluster-small div { | |
background-color: rgba(110,204,57,.6) | |
} | |
.marker-cluster-medium { | |
background-color: rgba(241,211,87,.6) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter('search_and_filtering_job_singular', 'smyles_sf_job_singular'); | |
function smyles_sf_job_singular( $singular ){ | |
return __('job today'); | |
} | |
add_filter('search_and_filtering_job_plural', 'smyles_sf_job_plural'); | |
function smyles_sf_job_plural( $singular ){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'doing_it_wrong_trigger_error', 'smyles_disable_localize_warning', 9999, 2 ); | |
function smyles_disable_localize_warning( $trigger, $function ){ | |
if( $function === 'WP_Scripts::localize' ){ | |
return false; | |
} | |
return $trigger; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'search_and_filtering_get_taxonomy_data_options_include_child_terms', 'smyles_tax_child_terms', 10, 2 ); | |
function smyles_tax_child_terms( $args, $taxonomy ){ | |
if( $taxonomy === 'job_listing_category' ){ | |
return false; | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'job_manager_emails_email_should_send', 'smyles_email_should_send', 10, 4 ); | |
function smyles_email_should_send( $should_send, $template, $listing_id, $that ) { | |
// Don't send if the user IS an admin submitting the application | |
if ( $template->template_name && 'application_confirmation_non_admin' === $template->template_name && current_user_can( 'manage_options' ) ) { | |
return false; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'search_and_filtering_job_radius_search_include_anywhere', '__return_false' ); |