Hi folks!
Think I’ve found the solution.
Around line 182 of wp-content/plugins/download-monitor/includes/class-wp-dlm.php, after this:
$current_support = get_theme_support( 'post-thumbnails' );
Put this:
if(is_array($current_support[0])) $current_support = $current_support[0];
Then the code should be like this:
// Get current supported
$current_support = get_theme_support( 'post-thumbnails' );
if(is_array($current_support[0])) $current_support = $current_support[0];
Barry Kooij, maybe this could be considered in the next plugin update, so we don’t need to edit plugin core files. ??
Regards,
Ricardo Pires – RP Desenvolvimento.