Created
October 7, 2016 08:38
-
-
Save eri-trabiccolo/4c49d8292a30db5c8ed1786622c7a0b3 to your computer and use it in GitHub Desktop.
Disable dropdown placement js feature in the Customizr(-PRO) theme
This file contains 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( 'tc_disabled_front_js_parts', 'pc_disable_dropdown_placement_script' ); | |
function pc_disable_dropdown_placement_script( $_parts ){ | |
return array_merge( $_parts, array('Czr_DropdownPlace' => array()) ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment