• Resolved ropaul2

    (@ropaul2)


    Hello,

    I have just purchased Portfolio SlideShow Pro for the sole purpose of displaying multiple slide shows on one page

    I have tried using the standalone slide show and also the include id= method in both cases the first slide show works fine but for the second slideshow, the first image displays and the next ones display as thumbnails but you can not advance to the next slide

    here is my link: http://www.raysonthebay.com/pro-slide-test-2/
    (this is using the include method)

    all images are attache to this page.

    Please help, I have spend hours on this.

    Thank you,
    Robin

    http://wordpress.org/extend/plugins/portfolio-slideshow/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter ropaul2

    (@ropaul2)

    http://www.raysonthebay.com/slideshow-test/

    here is link using the standalone slideshow
    same problem ;(

    Thread Starter ropaul2

    (@ropaul2)

    I finally got this to work. As per developer, I needed to load newer version of JQuery.

    so I added this to functions.php

    <?php
    //added by RLP 9/22/12
    //to fix Portfolio Slidehow Pro issue
    function my_scripts_method() {
    wp_deregister_script( ‘jquery’ );
    wp_register_script( ‘jquery’, ‘http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js&#8217;);
    wp_enqueue_script( ‘jquery’ );
    }

    add_action(‘wp_enqueue_scripts’, ‘my_scripts_method’);
    ?>

    Plugin Contributor Dalton Rooney

    (@daltonrooney)

    Hi Ropaul,
    A couple of things:

    #1 – This is not the correct forum for issues related to Portfolio Slideshow Pro. We deal with those issues on our own forum at http://madebyraygun.com/support.

    #2 – Our plugin has its own enqueue function for the jQuery script. You can choose to use the included WordPress jQuery or the Google APIs version. We often see themes that register jQuery incorrectly so you may need to edit your theme, but you shouldn’t need to add this code to enqueue jQuery, it’s done in the plugin.

    Dalton

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Portfolio Slideshow] Multiple slideshows per page’ is closed to new replies.