Hi,
Crossposting with the Formidable Forms support.
Their Formidable Boostrap add-on mangles the builder. This may not be a huge issue me, but could be nice if your two teams look into this.
Formidable Boostrap - OFF
Formidable Boostrap - ON

Thank you
cmstew
2
Hello @andxblink,
Ultimately this needs to be fixed on the Formidable Forms end but putting this in your functions.php file should get you there in the meantime.
function dequeue_unnecessary_scripts() {
if ( function_exists('bricks_is_builder_main') && bricks_is_builder_main() ) {
wp_deregister_script( 'bootstrap_tooltip' );
}
}
add_action( 'wp_print_scripts', 'dequeue_unnecessary_scripts' );
Let me know if it works!
1 Like
Still a bit wonky but better.
Thank you.
1 Like
cmstew
4
Do you have the light version? If so, I’ll look into it more in a bit. I’m wondering if there’s another JavaScript or style sheet that I missed.
I found a work-around and my client pushes. I am very sorry, but right now, I will not be able to document and debug this.
Thank you very much for your help!!
1 Like