Hi @dsl225,
I don’t see any emails regarding the Website on our side. However, from the description it might sounds like a known issue, could you please try the following snippet and then check whether you still face any issues regarding this?
<?php
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 );
You can apply the above snippet via mu-plugins. Please check this link on how to implement the above code as a mu-plugins:
https://premium.wpmudev.org/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins
If the above code doesn’t help much, then please do share the form export in the next reply so that we could further investigate if needed.
You can use Google Drive, Dropbox or any such cloud services to share the form export.
Looking forward to your response.
Kind Regards,
Nithin