Skip to content

Instantly share code, notes, and snippets.

@meloniq
Created October 21, 2016 05:20
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 meloniq/6b8c815358014f49690ca93983cb9281 to your computer and use it in GitHub Desktop.
Save meloniq/6b8c815358014f49690ca93983cb9281 to your computer and use it in GitHub Desktop.
[Language bar flags] Remove tooltip on flags
/**
* Dequeue language bar tooltip.
*
* @return void
*/
function childtheme_dequeue_lang_bar_tooltip() {
wp_dequeue_script( 'langbf_tooltip' );
}
add_action( 'wp_enqueue_scripts', 'childtheme_dequeue_lang_bar_tooltip', 11 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment