This file contains hidden or 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
| add_action( 'init', 'jobhunt_child_custom_function' ); | |
| if ( ! function_exists( 'jobhunt_child_custom_function' ) ) { | |
| function jobhunt_child_custom_function() { | |
| remove_filter( 'submit_resume_form_fields', 'jobhunt_add_custom_submit_resume_form_fields' ); | |
| add_filter('resume_manager_resume_fields', 'jobhunt_child_add_custom_resume_fields' ); | |
| add_filter('submit_resume_form_fields' , 'jobhunt_child_custom_submit_resume_form_fields'); | |
| add_filter( 'jobhunt_single_candidate_overview_details', 'jobhunt_child_single_candidate_overview_details' ); | |
| } | |
| } |
This file contains hidden or 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
| add_filter( 'jobhunt_single_candidate_overview_details', 'jobhunt_child_single_candidate_overview_details' ); | |
| if( ! function_exists( 'jobhunt_child_single_candidate_overview_details' ) ) { | |
| function jobhunt_child_single_candidate_overview_details( $args ) { | |
| $args['candidate_phone'] = array( | |
| 'icon' => 'la la-phone', | |
| 'label' => esc_html__( 'Phone', 'jobhunt' ), | |
| 'callback' => 'jobhunt_child_single_candidate_overview_candidate_phone', | |
| ); |
This file contains hidden or 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
| add_action( 'init', 'jobhunt_child_custom_function' ); | |
| if ( ! function_exists( 'jobhunt_child_custom_function' ) ) { | |
| function jobhunt_child_custom_function() { | |
| add_filter('submit_resume_form_fields' , 'jobhunt_child_custom_submit_resume_form_fields'); | |
| } | |
| } | |
| if ( ! function_exists( 'jobhunt_child_custom_submit_resume_form_fields' ) ) { | |
| function jobhunt_child_custom_submit_resume_form_fields ($fields) { |
This file contains hidden or 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
| .job-type.part-time { | |
| color: #007bff; | |
| border-color: #007bff; | |
| } | |
| .job-type.part-time:hover { | |
| color: #fff; | |
| background-color: #007bff; | |
| border-color: #007bff; | |
| } | |
| .job-type.part-time:focus, .job-type.part-time.focus { |
This file contains hidden or 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
| add_action( 'init', 'jobhunt_child_custom_function' ); | |
| if ( ! function_exists( 'jobhunt_child_custom_function' ) ) { | |
| function jobhunt_child_custom_function() { | |
| add_filter('submit_job_form_fields' , 'jobhunt_child_custom_submit_job_form_fields'); | |
| } | |
| } | |
| if ( ! function_exists( 'jobhunt_child_custom_submit_job_form_fields' ) ) { | |
| function jobhunt_child_custom_submit_job_form_fields ($fields) { |
This file contains hidden or 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
| if ( ! function_exists( 'jobhunt_header_job_search_icon' ) ) { | |
| /** | |
| * Displays Header Job Search Icon | |
| */ | |
| function jobhunt_header_job_search_icon() { | |
| if ( jobhunt_is_wp_job_manager_activated() && function_exists( 'jobhunt_job_header_search_block' ) ) { | |
| echo '<li class=header-search-icon>'; | |
| echo '<span class="search-btn"><i class="la la-search desktop-only"></i><i class="fas fa-search handheld-only"></i></span>'; | |
| $args = apply_filters( 'jobhunt_header_job_search_icon_args', array( |
This file contains hidden or 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
| add_filter( 'jobhunt_enable_header_user_login_dropdown', '__return_true' ); |
This file contains hidden or 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
| if ( ! function_exists( 'jobhunt_child_kc_map_shortcode_params_company_info_carousel' ) ) { | |
| function jobhunt_child_kc_map_shortcode_params_company_info_carousel( $shortcode_params ) { | |
| $shortcode_params['jobhunt_company_info_carousel']['params'][] = array( | |
| 'name' => 'ca_rows', | |
| 'label' => esc_html__('Rows', 'jobhunt-extensions'), | |
| 'type' => 'text', | |
| 'description' => esc_html__('Enter the number of rows to display.', 'jobhunt-extensions'), | |
| 'value' => 1, | |
| 'admin_label' => true | |
| ); |
This file contains hidden or 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
| add_action( 'init', 'tokoo_child_init_custom_functions' ); | |
| if( !function_exists('tokoo_child_init_custom_functions') ) { | |
| function tokoo_child_init_custom_functions() { | |
| remove_action( 'tokoo_header_icons', 'tokoo_header_cart' ); | |
| } | |
| } |
This file contains hidden or 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
| .site-header .desktop-only .primary-menu-item a { | |
| border-radius: 4px; | |
| padding-left: 18px; | |
| padding-right: 18px; | |
| } | |
| .header-bg-default .stuck .header-menu .primary-menu-item a { | |
| color: #fff; | |
| } |