Created
January 16, 2023 05:38
-
-
Save nkb-bd/fdac0d4049a18412f705f91eab62592c to your computer and use it in GitHub Desktop.
WP Fluent Form Plugin Default Style Off
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
//turn off form style | |
add_action( 'wp_enqueue_scripts', function () { | |
wp_deregister_style( 'fluentform-public-default' ); | |
}, 99 ); | |
//turn off button style | |
add_filter('fluentform_submit_button_force_no_style','__return_true'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment