We've had to (temporarily) disable the theme filter because it was causing issues on some installations. We'll try to get it working again in a future update.

prefix."auto_updates"; // Save list if( isset( $_POST['submit'] ) ) { check_admin_referer( 'cau_save_pluginlist' ); $noUpdateList = ''; $i = 0; $noUpdateCount = 0; if( isset( $_POST['post'] ) ) { $noUpdateCount = count( $_POST['post'] ); } if( $noUpdateCount > 0 ) { foreach ( $_POST['post'] as $key ) { $noUpdateList .= sanitize_text_field( $key ); $i++; if( $i != $noUpdateCount ) $noUpdateList .= ', '; } } $wpdb->query( $wpdb->prepare( "UPDATE $table_name SET onoroff = '%s' WHERE name = '%s'", $noUpdateList, $db_table ) ); echo '

'.__( 'Succes', 'companion-auto-update' ).' – '.sprintf( esc_html__( '%1$s %2$s have been added to the no-update-list', 'companion-auto-update' ), $noUpdateCount, strtolower( $filter_name ) ).'.

'; } // Reset list if( isset( $_POST['reset'] ) ) { check_admin_referer( 'cau_save_pluginlist' ); $wpdb->query( $wpdb->prepare( "UPDATE $table_name SET onoroff = '%s' WHERE name = %s", "", $db_table ) ); echo '

'.__( 'Succes', 'companion-auto-update' ).' – '.sprintf( esc_html__( 'The no-update-list has been reset, all %s will be auto-updated from now on', 'companion-auto-update' ), strtolower( $filter_name ) ).'.

'; } ?>
$value ) { $slug = $key; $explosion = explode( '/', $slug ); $actualSlug = array_shift( $explosion ); $slug_hash = md5( $slug[0] ); if( $filter == 'themes' ) { $theme = wp_get_theme( $actualSlug ); $name = $theme->get( 'Name' ); $description = $theme->get( 'Description' ); } else { foreach ( $value as $k => $v ) { if( $k == "Name" ) $name = $v; if( $k == "Description" ) $description = $v; } } if( in_array( $actualSlug, donotupdatelist( $filter ) ) ) { $class = 'inactive'; $checked = 'CHECKED'; $statusicon = 'no'; $statusName = 'disabled'; } else { $class = 'active'; $checked = ''; $statusicon = 'yes'; $statusName = 'enabled'; } echo ''; } ?>
 

'. $name .'

'.$actualSlug.'

'.__( 'Auto Updater', 'companion-auto-update' ).':

'.$description.'