Skip to content

Instantly share code, notes, and snippets.

@nkb-bd
Created January 16, 2023 05:38
Show Gist options
  • Save nkb-bd/fdac0d4049a18412f705f91eab62592c to your computer and use it in GitHub Desktop.
Save nkb-bd/fdac0d4049a18412f705f91eab62592c to your computer and use it in GitHub Desktop.
WP Fluent Form Plugin Default Style Off
//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