Created
November 3, 2019 13:24
-
-
Save andrejIka/9c4b9aeeef6520ea3415cebd8a9a2b17 to your computer and use it in GitHub Desktop.
Register/Unregister style/script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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