I have already reported a fix for this:
In catcheverest-functions.php in line 70 (approx.) add
catcheverest_pass_slider_value();
below
wp_enqueue_script( ‘catcheverest-slider’, get_template_directory_uri() . ‘/js/catcheverest-slider.js’, array( ‘jquery-cycle’ ), ‘20130114’, true );
So it should read
$enableslider = $options[ ‘enable_slider’ ];
if ( ( $enableslider == ‘enable-slider-allpage’ ) || ( ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) && $enableslider == ‘enable-slider-homepage’ ) ) {
wp_enqueue_script( ‘catcheverest-slider’, get_template_directory_uri() . ‘/js/catcheverest-slider.js’, array( ‘jquery-cycle’ ), ‘20130114’, true );
catcheverest_pass_slider_value(); /* SSL */
}
The problem is that wp_localize_script() is executed before wp_enqueue_script is executed on some systems (also on my). So it fails and a required Javascript variable is not created.