Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Maeve Lander

    (@enigmaweb)

    @vladyghost

    I’ve checked your site code and the debugger is showing errors in general.js file line 10 and 31 These are theme files. Hopefully when these errors are resolved player will work perfect. These are jquery errors effecting the output of the player.

    Hope this helps.

    Thread Starter vladyghost

    (@vladyghost)

    /*-----------------------------------------------------------------------------------*/
    /* GENERAL SCRIPTS */
    /*-----------------------------------------------------------------------------------*/
    jQuery(document).ready(function(){
    
    	// Table alt row styling
    	jQuery( '.entry table tr:odd' ).addClass( 'alt-table-row' );
    
    	// FitVids - Responsive Videos
    	jQuery( ".post, .widget" ).fitVids();
    
    	// Superfish for nav dropdowns
    	jQuery( 'ul.nav').superfish({
    		delay: 200,
    		animation: {opacity:'show', height:'show'},
    		speed: 'fast',
    		dropShadows: false
    	});
    
    	// Responsive Navigation (switch top drop down for select)
    	jQuery('ul#top-nav').mobileMenu({
    		switchWidth: 767,                   //width (in px to switch at)
    		topOptionText: 'Select a page',     //first option text
    		indentString: '???'  //string for indenting nested items
    	});
    
    });
    
    jQuery(window).load(function() {
    	// Fire Uniform js
    	jQuery( 'select.orderby, .variations select, input[type=radio], .checkout .col2-set select' ).uniform();
    
    	if ( jQuery( '.flexslider' ).length ) {
    
    		if ( woo_localized_data.slider_speed == 'Off' ) {
    			slideshowSpeed = 0;
    			slideshow = false;
    		} else {
    			slideshowSpeed = parseInt( woo_localized_data.slider_speed ) * 1000;
    			slideshow = true;
    		}
    
    		var animationDuration = woo_localized_data.slider_animation_speed * 1000.
    
    		var pauseOnHover = false;
    
    		if ( woo_localized_data.slider_hover == 'true' ) {
    			pauseOnHover = true;
    		}
    
    		jQuery( '.flexslider' ).flexslider({
    			slideshowSpeed: slideshowSpeed,
    			slideshow: slideshow,
    			animationDuration: animationDuration,
    			pauseOnHover: pauseOnHover,
    			before: function ( slider ) {
    				jQuery( '.slider-background img.active' ).fadeOut( animationDuration - 100, function () {
    					jQuery( this ).removeClass( 'active' ).addClass( 'inactive' );
    				});
    			},
    			after: function ( slider ) {
    				var slideID = jQuery( '.flexslider .slides > li:eq(' + slider.currentSlide + ') > div' ).attr( 'id' );
    
    				jQuery( '.slider-background img.' + slideID ).css( 'display', 'none' ).addClass( 'active' ).removeClass( 'inactive' ).fadeIn( animationDuration - 100 );
    			}
    		});
    	}
    });
    Thread Starter vladyghost

    (@vladyghost)

    what do i need to change?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: HTML5 jQuery Audio Player] player showing up blank on top of page’ is closed to new replies.