[ad_1]
Hi @schumiholic,
There isn’t any direct option to change the folder location where the uploaded files are saved but you can change that using custom codes..
If you want to change the file upload location then you can do that using the filter hook –
add_filter('fluentform/file_upload_options', function ($locations){
// Do your stuff here
}, 10, 1);Thank you!
