Skip to content

Instantly share code, notes, and snippets.

@andrejIka
Created November 3, 2019 13:24
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 andrejIka/9c4b9aeeef6520ea3415cebd8a9a2b17 to your computer and use it in GitHub Desktop.
Save andrejIka/9c4b9aeeef6520ea3415cebd8a9a2b17 to your computer and use it in GitHub Desktop.
Register/Unregister style/script
function enqueue_styles() {
wp_dequeue_style( 'contact-form-7' );
// wp_dequeue_style( 'contact-form-7-bootstrap-style' );
}
add_action( 'wpcf7_enqueue_styles', 'enqueue_styles' );
//remove_action('wpcf7_enqueue_styles');
remove_action( 'wpcf7_enqueue_styles', 'cf7bs_enqueue_styles' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment