Hi @nikphirke,
Sorry to know that you are experiencing this issue.
Could you please share an export of the form so we can take a closer look at the issue? Please share the form using pastebin.com or Google Drive. Please find a detailed guide on how to export a form here: https://wpmudev.com/docs/wpmu-dev-plugins/forminator/#import-export
We look forward to hearing back from you.
Kind Regards,
Nebu John
Hi @nikphirke
It seems that during create or while saving this form site had some glitch and form was not saved correctly. Even after re-addinf fields they do not work. I started to re-create this form from scratch and on first page with some date and upload all works fine.
I can only suggest at this point to re-create this form once again.
Kind Regards,
Kris
Hi again @nikphirke
I consulted this case with our SLS Team and you can try this snippet to fix your form.
Please add the below code as mu-plugin:
https://ww.wp.xz.cn/support/article/must-use-plugins/
add_action( 'wp_enqueue_scripts', function() {
if ( defined( 'FORMINATOR_VERSION' ) ) {
wp_enqueue_script(
'forminator-select2',
WP_PLUGIN_URL . '/forminator/assets/forminator-ui/js/select2.full.min.js',
array( 'jquery' ),
FORMINATOR_VERSION,
false
);
wp_enqueue_style(
'forminator-select2',
WP_PLUGIN_URL . '/forminator/assets/forminator-ui/css/src/form/select2.min.css',
array(),
FORMINATOR_VERSION
);
$form_designs = array( 'material', 'default', 'flat', 'bold' );
foreach ( $form_designs as $form_design ) {
wp_enqueue_style(
'forminator-forms-' . $form_design . '-full',
WP_PLUGIN_URL . '/forminator/assets/forminator-ui/css/src/form/forminator-form-' . $form_design . '.full.min.css',
array(),
FORMINATOR_VERSION
);
}
}
}, 1 );
Kind Regards,
Kris
I pasted the code above in functions.php and it’s not working. I don’t have access to file manager to paste this in mu-plugins.
Hello @nikphirke ,
Can you try creating a new form with fields that are currently not working and see if they will work fine or if those will throw the same errors?
kind regards,
Kasia
Recreating the form worked!