Hi!
Using version 1.2.1 (latest) – I’ll probably write something like this in my own plugin or theme (not in Store file uploads for Contact Form 7 plugin):
(untested code)
function handle_my_attachments($fullFileName){
$fileName = basename($fullFileName);
$dir = dirname($fullFileName);
//replace $myDir with your own folder
$myDir = "/home/my-account/public_html/wp-content/uploads/2021/12/";
$newFileName = $myDir . $fileName;
return $newFileName;
}
add_filter('nmr_create_attachment_file_name', 'handle_my_attachments');
this will listen to the event/filter nmr_create_attachment_file_name raised from this plugin, and will act on the event, changing the folder of the file.
The plugin will then proceed to save the file in that folder.
Good luck!
Mircea.