Skip to content

Instantly share code, notes, and snippets.

@mio31337
Created June 29, 2023 11:29
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 mio31337/1dcbfa6266cbddda456e0a0774f13e5d to your computer and use it in GitHub Desktop.
Save mio31337/1dcbfa6266cbddda456e0a0774f13e5d to your computer and use it in GitHub Desktop.
<?php
/**
* Removes admin notices for outdated template files
*/
function remove_template_files_notice() {
remove_action( 'admin_notices', 'wc_template_file_check' );
}
add_action( 'admin_init', 'remove_template_files_notice' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment