Look for posts_per_page in the loop-slider.php file up near the top. Once both of them are the same number it will work.
<?php
global $wp_query, $query_string;
$paged = get_query_var( ‘paged’ );
$args = array(
‘posts_per_page’ => 4,
‘paged’ => $paged,