I managed to fix the problem.
I added ‘posts_per_page’=>-1
to the real-post-slider-lite/real-post-slider-lite.php page.
Seems like the WP_Query loop section has a default length of 10 posts.
You can set it to show all posts using “-1”
$the_query = new WP_Query( array(‘category__in’ => $cat_id, ‘order’ => $vkrpsl_ascdesc, ‘posts_per_page’=>-1) );