I change upload path from widget parameters into 'images', but it still using 'assets' as upload path.
i modified components/UWfile.php line 60 to this, and it does the job.
[code]
if ($this->_new_file_path){
$this->_new_file_path .= $this->unique_dir($this->_new_file_path).'/';
} else {
$this->_new_file_path = pathinfo($this->_old_file_path, PATHINFO_DIRNAME).'/';
}
[/code]
Sorry, I'm still new to this git hub thingie
I change upload path from widget parameters into 'images', but it still using 'assets' as upload path.
i modified components/UWfile.php line 60 to this, and it does the job. [code] if ($this->_new_file_path){ $this->_new_file_path .= $this->unique_dir($this->_new_file_path).'/'; } else { $this->_new_file_path = pathinfo($this->_old_file_path, PATHINFO_DIRNAME).'/'; } [/code] Sorry, I'm still new to this git hub thingie