Hello there @brian728
Here is a PHP file that you can use as a MU plugin:
https://gist.github.com/wpmudev-sls/6ccb491fca0ad48ba596ab5e3e8eafe8
This will take care of this issue until it is resolved in the plugin itself with a future update.
Here’s how to install a MU plugin:
https://wpmudev.com/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins
Also keep in mind the following section in code:
// uncomment if you want to use this snippet just for specific form, and add the form id here.
// #forminator-module-{id}.
// if ( ! jQuery( '#forminator-module-15171' ).length ) {
// return;
// }
// Replace your show/hide value with your own.
const SHOW_VALUE = 'Show'; // Show value.
const HIDE_VALUE = 'Hide'; // Hide value.
As is it will still work for your form though.
Thank you,
Dimitris