I’m sorry for not closing the thread earier.
I figured that EU Cookies plugin was the biggest trouble maker (even if on another WP with same plugins and theme it worked fine) and changed it for another one. Flexslider loads fine since then.
if ( ! function_exists( 'alx_scripts' ) ) {
function alx_scripts() {
wp_enqueue_script( 'flexslider', get_template_directory_uri() . '/js/jquery.flexslider.min.js', array( 'jquery' ),'', false );
wp_enqueue_script( 'jplayer', get_template_directory_uri() . '/js/jquery.jplayer.min.js', array( 'jquery' ),'', true );
wp_enqueue_script( 'scripts', get_template_directory_uri() . '/js/scripts.js', array( 'jquery' ),'', true );
if ( is_singular() ) { wp_enqueue_script( 'sharrre', get_template_directory_uri() . '/js/jquery.sharrre.min.js', array( 'jquery' ),'', true ); }
if ( is_singular() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); }
}
}
add_action( 'wp_enqueue_scripts', 'alx_scripts' );
This is the original function from functions.php which already has solution you provided used.
My site is http://www.kd-sticna.si.
Thank you for looking at my problem.