Skip to content

Instantly share code, notes, and snippets.

@sandeepwisetr
Created March 3, 2020 12:00
Show Gist options
  • Save sandeepwisetr/5035eaacc2ce3eaad1b1b5f774ad72ff to your computer and use it in GitHub Desktop.
Save sandeepwisetr/5035eaacc2ce3eaad1b1b5f774ad72ff to your computer and use it in GitHub Desktop.
remove customizer css
<?php
add_action( 'wp_head', function () {
if ( class_exists( 'wfacp_core' ) ) {
if ( did_action( 'wfacp_after_checkout_page_found' ) ) {
$instance = WFACP_Core()->customizer->get_template_instance();
remove_action( 'wfacp_header_print_in_head', [ $instance, 'add_style_inline' ] );
remove_action( 'wfacp_header_print_in_head', [ $instance, 'typography_custom_css' ] );
}
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment