Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created December 7, 2020 16:30
Show Gist options
  • Save yousufansa/bd1ab0816a16f8cb10fa995772ca3b1e to your computer and use it in GitHub Desktop.
Save yousufansa/bd1ab0816a16f8cb10fa995772ca3b1e to your computer and use it in GitHub Desktop.
Jobhunt - Disable Handheld Offcanvas Nav Menu
if ( ! function_exists( 'jh_child_remove_handheld_offcanvas_nav' ) ) {
function jh_child_remove_handheld_offcanvas_nav() {
remove_action( 'jobhunt_header_handheld', 'jobhunt_off_canvas_nav', 10 );
}
}
add_action( 'init', 'jh_child_remove_handheld_offcanvas_nav' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment