This is a fix
on file collapscatlist.php on function collapscat_catfilter (line 366)
Replace the line 379
for ($i=0; $i<count($categories); $i++) {
by
for ($i=count($categories) -1 ; $i>=0 ; $i--) {
Thanks, this is a fix
Open the file sponsors-coursel.php
Replace the two lines 238, 239
$thepost = $wpdb->get_row( $wpdb->prepare( "SELECT *
FROM $wpdb->posts WHERE guid = '".$scwp_link_image."'" ) );
by
$thepost = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->posts WHERE guid = %s", $scwp_link_image ) );