@Juan: We are doing fine and we are slowing recovering.
Yes, it will not take custom post type. For that you need to build child theme, refer to child theme at http://catchthemes.com/blog/create-child-theme-wordpress/
1. Then copy catchbox_sliders()
function to your child theme functions.php
file and then edit the following code:
$get_featured_posts = new WP_Query( array(
'posts_per_page' => $postperpage,
'post__in' => $options[ 'featured_slider' ],
'orderby' => 'post__in',
'ignore_sticky_posts' => 1 // ignore sticky posts
));
In the above code you need to add in post_type. So, it will be as below:
$get_featured_posts = new WP_Query( array(
'posts_per_page' => $postperpage,
'post_type' => 'post,events',
'post__in' => $options[ 'featured_slider' ],
'orderby' => 'post__in',
'ignore_sticky_posts' => 1 // ignore sticky posts
));
Note: you need to change that events with your post type.