Hello,
You can use ‘ssa_change_file_upload_path’ filter to change upload directory path. Following is sample code:
add_filter(‘ssa_change_file_upload_path’,’change_upload_directory’,10,1);
function change_upload_directory($path)
{
$url = ‘New directory url’
return $url;
}