we using Joomla latest version. Currently we expecting issue with your module Logo Showcase that it shows only first folder within "images". Aslo if we try to delete this folder or rename it, it's still presist on dropdown and no other folders will be show.
The folder it shows is a cache folder for plugin Content - Resize Image on the Fly and Cache. We did also try rdeactivate and deinstall this plugin - smae situation. Aslso removing and new install of Logo Showcase module didnt fixed this. I did also copied Livesite on my local and expecting then same issue. All Joomla cache was also deacivated due tests, but without success.
For everyone who will looking how to fix the issue (provided by JUX Team):
in the file: ...modules/mod_jux_logoshowcase/elements/juximagefolder.php
1. comment out 193: var_dump($forderArr);die;
2. line 685: if (!is_dir($path))
replace with: if (is_dir($path))
The problem is, that as soon under administrator path exist an images folder, JUX Logoshowcase try to get this content and not images folder in root, where Joomla stores all media files per default. In our case this folder was automaticaly created by third party plugin we using to resize and cache article images.
I hope this fix for JUX Logoshowcase will be implemented in next release.