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( 'tk_child_wishlist_disable' ) ) { | |
function tk_child_wishlist_disable() { | |
remove_action( 'woocommerce_before_shop_loop_item', 'tokoo_add_to_wishlist_button', 6 ); | |
} | |
} | |
add_action( 'woocommerce_before_shop_loop_item', 'tk_child_wishlist_disable', 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
@media (max-width: 575.98px) { | |
.single-product-summary-inner > .single-product-feature-list { | |
display: none; | |
} | |
} |
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( 'electro_child_disable_catalog_ordering_toggle' ) ) { | |
function electro_child_disable_catalog_ordering_toggle() { | |
remove_action( 'electro_shop_control_bar', 'woocommerce_catalog_ordering', 20 ); | |
} | |
} | |
add_action( 'init', 'electro_child_disable_catalog_ordering_toggle' ); |
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_listing_company_description' ) ) { | |
function jh_child_single_job_listing_company_description() { | |
global $post; | |
$post = get_post( $post ); | |
$job_id = get_the_ID(); | |
if( $job_id ) { | |
$post_title = get_post_meta( $job_id, '_company_name', true ); | |
if( ! empty( $post_title ) ) { | |
$company = get_page_by_title( $post_title, OBJECT, 'company' ); |
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( 'electro_footer_v2_handheld', 'electro_copyright_bar_v2', 100 ); | |
add_action( 'electro_mobile_footer_v1', 'electro_copyright_bar_v2', 100 ); | |
add_action( 'electro_mobile_footer_v2', 'electro_copyright_bar_v2', 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
.handheld-widget-menu .columns { | |
flex: 0 0 100% !important; | |
max-width: 100% !important; | |
text-align: center; | |
} |
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
//Remove Jobhunt Company Fields | |
if ( ! function_exists( 'jh_child_customize_job_form_company_fields' ) ) { | |
function jh_child_customize_job_form_company_fields( $fields ) { | |
unset($fields['company_category']); | |
unset($fields['company_team_size']); | |
unset($fields['company_googleplus']); | |
unset($fields['company_linkedin']); | |
return $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
//Remove Job Manager Company Fields | |
if ( ! function_exists( 'jh_child_customize_job_manager_job_form_company_fields' ) ) { | |
function jh_child_customize_job_manager_job_form_company_fields( $fields ) { | |
unset($fields['company']['company_twitter']); | |
unset($fields['company']['company_video']); | |
return $fields; | |
} | |
} | |
add_filter( 'submit_job_form_fields', 'jh_child_customize_job_manager_job_form_company_fields', 20 ); |
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_job_listing_default_catalog_orderby' ) ) { | |
function jh_child_job_listing_default_catalog_orderby($orderby) { | |
return 'featured'; | |
} | |
} | |
add_filter( 'jh_job_listing_default_catalog_orderby', 'jh_child_job_listing_default_catalog_orderby' ); |
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( 'unicase_footer_contact' ) ) { | |
function unicase_footer_contact() { | |
?> | |
<div class="footer-contact"> | |
<?php unicase_footer_contact_info(); ?> | |
<?php unicase_footer_social_links(); ?> | |
</div> | |
<?php | |
} | |
} |