I would try deactivating all of the plugins and see if the error message goes away. If not, then try choosing a different theme.
If the message goes away then you know that it’s the theme fault. If you really want to use the current theme, then try re-installing it.
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
thats not the answer….i want the theme im using…and its not the plugin option. thx tho HELP
Were you able to resolve this problem? I have the same issue with Featured Images2. The problem only started when I moved the code:
do_action( ‘ithemes_featured_images_fade_images’ );
to a file other than index.php…
Any help would be appreciated.