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

    (@jleuze)

    Hi, it looks like that image is added via the theme’s options page, you won’t be able to choose a slideshow from that options page, but you can pretty easily edit your theme’s homepage template to replace it with a slideshow.

    Edit the theme’s front-page.php file and delete this bit of code that starts on line 40:

    <?php if ( get_option('inkthemes_slideimage1') !='' ) { ?>
                            <div class="images"><img title="slideimage1" src="<?php echo get_option('inkthemes_slideimage1'); ?>"  alt="" /></div>
                            <?php } else { ?>
                            <div class="images"><img title="Top Section" src="<?php echo get_template_directory_uri(); ?>/images/iphone-slide.png" alt="" /></div>
                            <?php } ?>

    Replace it with this code to add the slideshow:

    <div class="images"><?php if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow(); } ?></div>

    Hi Josh

    I wanted to do the same thing with a toommorel lite template for a local sports club and followed this quick guide and the slideshow loads but looks like it’s underneath the existing slideshow content. I’ve tried adding custom css z-index but no joy. Any ideas?

    Thanks

    PS I’ve taken out the customisation for now.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘[Plugin: Meteor Slides] insert into toommorel-lite theme’ is closed to new replies.