Support » Plugin: Meteor Slides » [Plugin: Meteor Slides] Meteor Slide Show… Slides are not moving

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

    (@jleuze)

    None of the Meteor Slides scripts are loaded in the head of your page. The head looks pretty empty, I think you are missing the wp_head action in your header.php file.

    Once you add that, the scripts should load and the slideshow will work. There are <code> tags around the slideshow, the shortcode must have been copied and pasted into the visual editor. This can cause problems, either switch to the HTML editor and remove the code tags, or delete the whole shortcode and paste it back into the HTML editor.

    I don’t know what the dimensions of your slideshow are, but either that larger image fits within them, or it was uploaded before you set the current dimensions.

    Thank you so much for the great explanation.. im a bit new to the terminology… “missing the wp_head action” what should it say…. here is the original header.php file
    what are CODE TAGS? Delete which “short code” thanks!

    ————————————-
    <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>&lt;?php// function wp_initialize_the_theme() { if (!function_exists(“wp_initialize_the_theme_load”) || !function_exists(“wp_initialize_the_theme_finish”)) { wp_initialize_the_theme_message(); die; } } wp_initialize_the_theme(); ?>

    <html xmlns=”http://www.w3.org/1999/xhtml&#8221; <?php language_attributes(); ?>>
    <head profile=”http://gmpg.org/xfn/11″&gt;
    <meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
    <meta http-equiv=”X-UA-Compatible” content=”IE=EmulateIE7″ />
    <title><?php if (is_home () ) { bloginfo(‘name’); } elseif ( is_category() ) { single_cat_title(); if(get_bloginfo(‘name’) != “”) echo ‘ – ‘ ; bloginfo(‘name’); }
    elseif (is_single() ) { single_post_title(); }
    elseif (is_page() ) { bloginfo(‘name’); if(get_bloginfo(‘name’) != “”) echo ‘: ‘; single_post_title(); }
    else { wp_title(”,true); } ?></title>
    <script type=”text/javascript” src=”<?php bloginfo(‘template_url’); ?>/script.js”></script>
    <link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
    <!–[if IE 6]><link rel=”stylesheet” href=”<?php bloginfo(‘template_url’); ?>/style.ie6.css” type=”text/css” media=”screen” /><![endif]–>
    <!–[if IE 7]><link rel=”stylesheet” href=”<?php bloginfo(‘template_url’); ?>/style.ie7.css” type=”text/css” media=”screen” /><![endif]–>
    <link rel=”alternate” type=”application/rss+xml” title=”<?php printf(__(‘%s RSS Feed’, ‘kubrick’), get_bloginfo(‘name’)); ?>” href=”<?php bloginfo(‘rss2_url’); ?>” />
    <link rel=”alternate” type=”application/atom+xml” title=”<?php printf(__(‘%s Atom Feed’, ‘kubrick’), get_bloginfo(‘name’)); ?>” href=”<?php bloginfo(‘atom_url’); ?>” />
    <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
    <?php if (tt_option(‘header_mods_enable’) == ‘Yes’) {include TEMPLATEPATH . “/includes/header-mods.php”;} ?>
    </head>
    <body <?php body_class(); ?>>
    <div id=”art-page-background-glare”>
    <div id=”art-page-background-glare-image”></div>
    </div>
    <div id=”art-main”>
    <div class=”art-sheet”>
    <div class=”art-sheet-tl”></div>
    <div class=”art-sheet-tr”></div>
    <div class=”art-sheet-bl”></div>
    <div class=”art-sheet-br”></div>
    <div class=”art-sheet-tc”></div>
    <div class=”art-sheet-bc”></div>
    <div class=”art-sheet-cl”></div>
    <div class=”art-sheet-cr”></div>
    <div class=”art-sheet-cc”></div>
    <div class=”art-sheet-body”>
    <div class=”art-header”>
    <div class=”art-header-png”></div>
    <div class=”art-header-jpeg”></div>
    <?php if (function_exists(‘tt_option’) && tt_option(‘header_mods_enable’) == ‘Yes’) { ?>
    <div class=”art-logo”>
    <div class=”headerleft” <?php if(tt_option(‘header_blog_title’) != ‘Text’) { echo ‘id=”imageheader”‘; } // start header image ?>>
    <h1 id=”name-text” class=”art-logo-name”>
    /”><?php bloginfo(‘name’); ?></h1>
    <div id=”slogan-text” class=”art-logo-text”>
    <?php bloginfo(‘description’); // end header image ?></div>
    </div>
    <div class=”widget-area”>
    <?php dynamic_sidebar(‘Header Right’); ?>
    </div><!– end .widget-area –>
    </div>
    <?php } else { ?>
    <div class=”art-logo”>
    <h1 id=”name-text” class=”art-logo-name”>
    /”><?php bloginfo(‘name’); ?></h1>
    <div id=”slogan-text” class=”art-logo-text”>
    <?php bloginfo(‘description’); ?></div>
    </div>
    <?php } ?>

    <div class=”art-nav”>
    <div class=”l”></div>
    <div class=”r”></div>
    <ul class=”art-menu”>
    <?php art_menu_items(); ?>

    </div>
    </div>
    <div id=”card”></div>

    Plugin Author Josh Leuze

    (@jleuze)

    Careful, posting more than a few lines of code is against the forum rules and could get your post truncated. When in doubt, add the wp_head function right before your closing head tag:

    </head>

    But this should be included in every theme and if it isn’t, I would consult the theme developer you got the theme from.

    SORRY didnt know that wasnt permitted… I THINK I understand
    you are saying go to WHICH FILE…. style.css or home.php ??? and put in the wp_head function……

    a. Which file is usually the template file? is that a php or a css file?
    usual name is?
    b. right before </head> put in??
    wp_head ????

    Sorry but i am really new to this .

    Plugin Author Josh Leuze

    (@jleuze)

    That wp_head function needs to go in the header.php file, right in that code that you posted in this thread.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: Meteor Slides] Meteor Slide Show… Slides are not moving’ is closed to new replies.