Hi @sunsoftpk,
Could you please try the following snippet and then see whether that helps?
<?php
add_filter( 'forminator_field_single_markup', function( $html, $element_id ){
static $select_id;
if( false !== strpos( $element_id, 'select-') && preg_match( '/select-([\d]+)-field/', $element_id, $matches ) ){
if( $select_id ){
$select_id += 1;
$html = str_replace( $element_id, "select-$select_id-field", $html );
}else{
$select_id = intval( $matches[1] );
}
$select_id ++;
}
return $html;
}, 10, 2 );
The above code can be added as a 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
Please do let us know if you need any further assistance. Have a nice day ahead.
Best Regards,
Nithin`
same issue
https://prnt.sc/1qchlg6
why this bar no result found i don’t want this
Hi @sunsoftpk
It doesn’t seem correct, could you export your form and we can take a look?
https://wpmudev.com/docs/wpmu-dev-plugins/forminator/#import-export
You can share the Google drive.
Best Regards
Patrick Freitas
form export file in forminator view it works fine but when I embed in site it broke
https://drive.google.com/file/d/1CDhCp-vJymxd2z7MOAd9aWyLgUTKXnpa/view?usp=sharing
Hi @sunsoftpk ,
Thanks for sharing the form export, I gave a quick test but I’m afraid I’m not able to replicate the issue when tested on my system.
Tested with and without Elementor builder and the form was loading fine. We would like to rule out if the issue isn’t due to a conflict.
Could you please run a conflict test as mentioned in the following flowchart and then see whether it works fine?
Flowchart:
https://premium.wpmudev.org/wp-content/uploads/2015/09/Support-Process-Support-Process.gif
Please do let us know how that goes. Looking forward to your response.
Best Regards,
Nithin
Hi @sunsoftpk
I hope you are doing well and safe!
We haven’t heard from you in a while, I’ll mark this thread as resolved.
Feel free to let us know if you have any additional questions or problems.
Best Regards
Patrick Freitas