Created
December 7, 2020 16:30
-
-
Save yousufansa/bd1ab0816a16f8cb10fa995772ca3b1e to your computer and use it in GitHub Desktop.
Jobhunt - Disable Handheld Offcanvas Nav Menu
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_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