Skip to content

Instantly share code, notes, and snippets.

@gabrielmerovingi
Created April 13, 2017 22:06
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 gabrielmerovingi/d54a7f9cc83be7b0f810358ab41a83e3 to your computer and use it in GitHub Desktop.
Save gabrielmerovingi/d54a7f9cc83be7b0f810358ab41a83e3 to your computer and use it in GitHub Desktop.
Disable JavaScript debug for administrators in the myCRED Notifications Plus add-on.
/**
* Disable Notifications Debug
* @version 1.0
*/
function mycred_pro_disable_notice_debug( $args ) {
$args['debug'] = 'no';
return $args;
}
add_filter( 'mycred_notice_js', 'mycred_pro_disable_notice_debug' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment