thats not the answer….i want the theme im using…and its not the plugin option. thx tho HELP
function _sortImages() {
if ( ‘ordered’ === $this->_options[‘fade_sort’] )
uksort( $this->_options[‘image_ids’], array( &$this, ‘_orderedSort’ ) );
else if ( ‘alpha’ === $this->_options[‘fade_sort’] )
uksort( $this->_options[‘image_ids’], array( &$this, ‘_alphaSort’ ) );
else
uksort( $this->_options[‘image_ids’], array( &$this, ‘_randomSort’ ) );
}
lines 1269-1276