Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save xlplugins/582cb50df41864625929502eec81cf45 to your computer and use it in GitHub Desktop.
Save xlplugins/582cb50df41864625929502eec81cf45 to your computer and use it in GitHub Desktop.
Enable Customizer css on Funnelkit Checkout
class WFACP_EnableCustomizerCss {
public function __construct() {
add_action( 'wfacp_after_checkout_page_found', [ $this, 'run_hook' ] );
}
public function run_hook() {
add_filter( 'wfacp_enable_customizer_css', '__return_false' );
}
}
new WFACP_EnableCustomizerCss();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment