Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author Josh Leuze

    (@jleuze)

    The page you have the slideshow in isn’t valid HTML. The slideshow markup is the first thing in the source code ahead of the opening <HTML> tag. Are you adding the slideshow template tag to your header.php file?

    Move it down inside the <body> tags somewhere, inside your header container or wherever you want to put it.

    Thread Starter hdevils

    (@hdevils)

    I fixed the placement of the code ??

    No, i am adding it to my index.php

    Still not working for me.

    Plugin Author Josh Leuze

    (@jleuze)

    The JavaScript for the slideshow isn’t running, your theme or another plugin is disabling the default copy of jQuery and is trying to load it from Google instead.

    Thread Starter hdevils

    (@hdevils)

    All my plugins are disabled and I have <?php wp_enqueue_script(“jquery”); ?> in the header.

    Plugin Author Josh Leuze

    (@jleuze)

    You don’t need to add jQuery, Meteor Slides does this, but something else is removing it, and the copy you added, probably in the functions.php file of the theme.

    Are you using the HTML5 Reset WordPress Theme? In functions.php you’ll find this bit of code:

    // Load jQuery
    	if ( !function_exists(core_mods) ) {
    		function core_mods() {
    			if ( !is_admin() ) {
    				wp_deregister_script('jquery');
    				wp_register_script('jquery', ("//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"), false);
    				wp_enqueue_script('jquery');
    			}
    		}
    		core_mods();
    	}

    Fix it like this:

    // Load jQuery
    	if ( !function_exists(core_mods) ) {
    		function core_mods() {
    			if ( !is_admin() ) {
    				wp_enqueue_script('jquery');
    			}
    		}
    		core_mods();
    	}
    Thread Starter hdevils

    (@hdevils)

    Shows up now! But when I mouse over it it moves down.

    Honestly thank you so much for the help! I am rating the plug-in 5 stars and will donate some cashola!

    Plugin Author Josh Leuze

    (@jleuze)

    No problem, thanks for your donation!

    There is a minor conflict with the theme, add this to your theme’s stylesheet to fix the dropping:

    #cover .meteor-slides .meteor-clip {
        position: static;
    }
    Thread Starter hdevils

    (@hdevils)

    It works great! Thank you so much! Your time is greatly appreciated!

    Plugin Author Josh Leuze

    (@jleuze)

    You’re welcome!

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘[Plugin: Meteor Slides] Not working’ is closed to new replies.