Hi All,
If anyone else is having this little issue here is the little fix I added.
On treeview the latest update appears to have broken the front end uploader. I was able to fix the issue on my clients installation as outlined below.
classes/TreeviewAdmin.php line 109
Original:
jQuery(“#<?php echo $id ?> a. :not(.file-input)”).each(function(i,el) {
Modified:
jQuery(“#<?php echo $id ?> a.add-file”).not(“.file-input”).each(function(i,el) {