Hi @jejonesjnr
I hope you’re well today!
There is an issue on plugin end and it’s being investigated by our developers so should be fixed with one of upcoming releases – but I don’t have ETA yet.
For now, other than downgrade of the plugin, using this code should fix the issue too:
https://gist.github.com/wpmudev-sls/9f1a22896e7318dd26d06872b8467419
You would need to add code to the site as a Must-Use plugin:
– create an empty file with a .php extension (e.g. “forminator-upload-mapping-patch.php”)
– copy and paste code into it
– upload the file to the “/wp-content/mu-plugins” folder of your WordPress installation on the server
and you’d need to “configure” the code by replacing numbers with your form(s) ID’s in both copies of this line in the code
if( !in_array( $form_id, $form_ids ) ){
and defining your custom field(s) name(s) in this line:
if ( $post_val['key'] == 'test_image' ) { //Please change test_image to your custom field name
Note:
a) if it’s about a single custom field, simply replace “test_image” with the field name
b) if it’s about multiple custom fields then you will need to replace this line with following
$fields_names = array( 'test_image', 'another_image', 'third_field' ); // comma separated custom fields names
if ( in_array( $post_val['key'], $fields_names ) ) {
Best regards,
Adam