I't not that often that I come to this board for actual help..
I've noticed one thing with thumbnail sizes. There is no "original size" among them. Imagine I want to have some thumbnails with size '100' and some not resized at all (the size of the original pic would be the size of the thumbnail). If I have sizes of thumbnails of 100 and 200, I'd like to have the actual size select in administration to consist of "100", "200", "original size".
Is there a quick hack to do this without disrupting the whole QC structure? thanks a lot.
1. change $config['pages_images_sizes'] in general.php to: $config['pages_images_sizes'] = Array( 0 => 100, 1 => 200, 2 => '' );
2. then change in file libraries/Trash.php function throwSelectFromArray(), before the line: $sOption .= '<option value="'.$iKey.'" '.$sSelected.'>'.$mValue.'</option>'; add: if ($mValue =="") $mValue = "original";