Created
June 13, 2025 13:40
-
-
Save xlplugins/582cb50df41864625929502eec81cf45 to your computer and use it in GitHub Desktop.
Enable Customizer css on Funnelkit Checkout
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
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