Skip to content

Instantly share code, notes, and snippets.

@Pebblo
Created July 28, 2022 20:35
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 Pebblo/e53ab2dc5fe2a495a53d1e5b6f75b8ce to your computer and use it in GitHub Desktop.
Save Pebblo/e53ab2dc5fe2a495a53d1e5b6f75b8ce to your computer and use it in GitHub Desktop.
Example of how to remove scripts/styles from EE admin registration pages when other plugins add them to all admin pages.
<?php //Do not include the opening PHP tag if you already have one
add_action('admin_print_scripts-event-espresso_page_espresso_registrations', 'tw_ee_remove_conflict_scripts_and_styles', 99);
function tw_ee_remove_conflict_scripts_and_styles() {
wp_deregister_script('foundation-datepicker');
wp_deregister_style('foundation-datepicker');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment