Skip to content

Instantly share code, notes, and snippets.

@eri-trabiccolo
Last active August 29, 2015 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eri-trabiccolo/89e0336ee79d9f4fed14 to your computer and use it in GitHub Desktop.
Save eri-trabiccolo/89e0336ee79d9f4fed14 to your computer and use it in GitHub Desktop.
add_action('customize_controls_print_styles', 'fix_wfc_css_menu', 100);
function fix_wfc_css_menu(){
$style = '
<style id="fix_wfc">
li[id*="customize-control-tc_font"]{
display: none !important;
}
.tc-zone-section li[id*="customize-control-tc_font"]{
display: initial !important;
}
</style>';
echo $style;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment