• Resolved pforget

    (@pforget)


    Ok I’m a complete newby.

    I was able to cut and past your code into header.php to create the header slideshow per your vimeo instructions without killing my site (Thanks BTW).

    I am wondering if there is a way to run multiple slideshows, but with different dimensions, (i.e. I want to run specifically a header show(s) at 940×198 and a different show on another page at 612×793). is this possible?

    Thx

Viewing 15 replies - 16 through 30 (of 32 total)
  • Plugin Author Josh Leuze

    (@jleuze)

    That link is password protected. Make sure that the slideshow you have specified matches that slideshow’s slug exactly.

    My apologies, I forgot to send you the login details:

    username == elf
    password == elf123

    My sideshow is called ‘Training’ and slug is ‘training’ but doesn’t work…

    I’m not quite sure what I’m missing.

    Cheers,
    Mali

    Plugin Author Josh Leuze

    (@jleuze)

    Everything looks OK to me Mali, but you do have a lot of other plugins that are using JavaScript, I would try deactivating them and testing the slideshow to make sure it’s not a JavaScript conflict.

    I tried to displayed deactive all running plugins and no luck, should maybe try run new WP installation then install only Meteor Slides plugin and test multi-slideshows again?

    Plugin Author Josh Leuze

    (@jleuze)

    It wouldn’t hurt to try that. Anything you can do to eliminate possible conflicts!

    Hi JLeuze, my stupid mistake I’m sorry to waist such time. I just noticed that I didn’t assign slides to the slideshows and now it’s sorted.

    I’ve got another problem, I want echo specific slideshow for specific page and I tried the code below:

    <?php
    if(is_page(‘Home’)){
    echo ‘<?php if ( function_exists( “meteor_slideshow” ) ) { meteor_slideshow( “home”, “” );}?>’;
    } ?>

    <?php
    else(is_page(‘About Us’)){
    echo ‘<?php if ( function_exists( “meteor_slideshow” ) ) { meteor_slideshow( “training”, “” );}?>’;
    } ?>

    …and get errors, I’m not that GOOD in PHP.

    Thanking you in advance.

    Plugin Author Josh Leuze

    (@jleuze)

    No worries Mali, PHP errors are generally pretty helpful. They will tell you if the code has something it wasn’t expecting, or is missing something it was, and often will at least tell you the line the error is on.

    The documentation on conditional tags is a big help with setting up conditionals like this.

    First, you are echoing the meteor_slideshow function, you don’t need to do that, it should look just like this:

    <?php if ( function_exists( "meteor_slideshow" ) ) { meteor_slideshow( "home", "" );}?>

    I would double check and confirm that you have the page titles correct, and that you have the slideshow slugs correct. In fact I would test the slideshows one at a time without the conditions, make sure they work, and test the conditions separately with just a simple echo, make sure each piece is functioning.

    Also watch the structure of that conditional and make sure it resolves. Like with an else, you would just put what the default would be, not another condition. To add another condition use an elseif, and then either end it, or set a default with an else.

    Try using this code and see if it works for you:

    <?php if ( is_page( 'Home' ) ) {
    	if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow( "home", "" ); }
    } elseif (is_page( 'About Us' ) ) {
    	if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow( "training", "" ); }
    } else {
    	//Put your default content here
    } ?>

    Thanks a lot for help, all seems to be cool now. I just call each slide as you explained: <?php if ( function_exists( “meteor_slideshow” ) ) { meteor_slideshow( “home”, “” );}?> from pages template files just after: get_header(); ?

    Thanks a lot.

    Hello there,

    I have to insert multiple slideshows on the same page, which i managed to do thanks to the slug, but I also gotta apply different transition effects for each slideshow I’ve created. Is it possible to do so? Are there any shortcodes I could use?

    Thanks a lot in advance

    Plugin Author Josh Leuze

    (@jleuze)

    @daowin Yes you can use different transitions in each slideshow using metadata.

    Great, thanks so much ??

    Plugin Author Josh Leuze

    (@jleuze)

    No problem!

    Hi there, I wanted to change the timing of the slideshow using metadata but I cannot figure out how to do so, any chance you can help me?

    Plugin Author Josh Leuze

    (@jleuze)

    Hi, so you have multiple slideshows and you want one of them to have a different slide duration, like say six seconds?

    The metadata for that would look like this:

    [meteor_slideshow slideshow="my-slideshow" metadata="timeout: 6000"]

    Hi JLeuze, I’ve managed to get thus far with it

    https://www.thebathpub.co.uk/WP/

    but I’m not sure how to place it correctly. Can you help?

    Cheers

Viewing 15 replies - 16 through 30 (of 32 total)
  • The topic ‘[Plugin: Meteor Slides] Multiple Slideshows per site with different pixel dimensions’ is closed to new replies.