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
.navbar-nav .open li:hover { | |
position: relative; | |
} | |
.navbar-nav .open li:hover > ul { | |
display: block; | |
position: absolute; | |
top: -7px; | |
left: 100%; | |
} |
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( 'woocommerce_default_catalog_orderby_options', 'ec_child_woocommerce_custom_catalog_orderby_options' ); | |
function ec_child_woocommerce_custom_catalog_orderby_options ( $sorting ) { | |
$sorting['rand'] = esc_html__( 'Random', 'electro-child' ); | |
return $sorting; | |
} |
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_submit_job_form_company_fields' , 'jobhunt_custom_submit_job_form_company_fields'); | |
if ( ! function_exists( 'jobhunt_custom_submit_job_form_company_fields' ) ) { | |
function jobhunt_custom_submit_job_form_company_fields ($fields) { | |
$fields['company_instagram'] = array( | |
'label' => esc_html__( 'Instagram', 'jobhunt' ), | |
'type' => 'text', | |
'required' => false, | |
'placeholder' => esc_html__( 'Instagram url', 'jobhunt' ), | |
'priority' => 5, |
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_submit_job_form_company_fields' , 'jobhunt_custom_submit_job_form_company_fields'); | |
if ( ! function_exists( 'jobhunt_custom_submit_job_form_company_fields' ) ) { | |
function jobhunt_custom_submit_job_form_company_fields ($fields) { | |
$fields['company_instagram'] = array( | |
'label' => esc_html__( 'Instagram', 'jobhunt' ), | |
'type' => 'text', | |
'required' => false, | |
'placeholder' => esc_html__( 'Instagram url', 'jobhunt' ), | |
'priority' => 5, |
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_company_description_title' , 'jobhunt_custom_company_description_title'); | |
if ( ! function_exists( 'jobhunt_custom_company_description_title' ) ) { | |
function jobhunt_custom_company_description_title($title) { | |
global $post; | |
$post = get_post( $post ); | |
$title = esc_html__( 'About ', 'jobhunt' ) . get_the_title(); | |
return $title; |
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_wpjmc_open_positions_info' , 'jobhunt_custom_wpjmc_open_positions_info'); | |
if ( ! function_exists( 'jobhunt_custom_wpjmc_open_positions_info' ) ) { | |
function jobhunt_custom_wpjmc_open_positions_info ($opens) { | |
return '<a href="#company-job_listings">' . $opens . '</a>'; | |
} | |
} |
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('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) { | |
$fields['resume_fields']['candidate_header_bg_image'] = array( | |
'label' => esc_html__( 'Header Image', 'jobhunt' ), | |
'type' => 'file', | |
'placeholder' => 'Upload your header image', | |
'priority' => 5, | |
'required' => false |
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( 'jh_child_single_job_overview_details' ) ) { | |
function jh_child_single_job_overview_details( $args ) { | |
$args['job_title'] = array( | |
'icon' => 'la la-graduation-cap', | |
'label' => esc_html__( 'Job Title', 'jobhunt' ), | |
'callback' => 'jh_child_single_job_overview_job_title', | |
); | |
$args['job_contact'] = array( | |
'icon' => 'la la-graduation-cap', |
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_functions' ); | |
if ( ! function_exists( 'jobhunt_child_custom_functions' ) ) { | |
function jobhunt_child_custom_functions() { | |
add_filter( 'jobhunt_site_content_page_title', 'jobhunt_child_wpjm_page_title' ); | |
} | |
} | |
if ( ! function_exists( 'jobhunt_child_wpjm_page_title' ) ) { | |
function jobhunt_child_wpjm_page_title( $title ) { |
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('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) { | |
$fields['job']['job_header_bg_image'] = array( | |
'label' => esc_html__( 'Header Image', 'jobhunt' ), | |
'type' => 'file', | |
'placeholder' => 'Upload your header image', | |
'priority' => 5, | |
'required' => false |
OlderNewer