• Resolved jedifunk

    (@jedifunk)


    Been using this plugin for about a year now, and love its functionality.

    However, on my latest project the current version of the plugin (0.3.6.2) never loads.

    It shows up in the admin area, and I am able to setup the functionality I would like, but when the page is loaded, the JS never loads. jQuery loads, but the jquery.coda-slider-3.0 file or the jQuery easing never load.

    I also have the following using jQuery
    – google maps api
    – curtain.js
    – mediaelements.js

    I’ve tried turning these off and it still doesn’t load.

    However, if I install the plugin on a clean install using 2011 theme the plugin works as expected.

    Thoughts?

    http://wordpress.org/extend/plugins/wp-coda-slider/

Viewing 4 replies - 1 through 4 (of 4 total)
  • If it loads correctly when you use Twenty Eleven, there’s a good chance the problem is actually with your theme. What theme are you using?

    Thread Starter jedifunk

    (@jedifunk)

    @sabreuse i’m not surprised. its a custom theme that i’ve developed from scratch.

    Thread Starter jedifunk

    (@jedifunk)

    as i’m reviewing my code, i think i might have an idea of why. it looks like the coda slider only loads itself on pages/posts where a slider has been created, which typically would be perfect, to keep JS calls to a minimum.

    however, in this instance, i’m creating a one page site that uses the curtain.js to simulate different “pages”.

    i’m pulling in the page content using the following:

    <?php
    $page_id = 7;
    $page_data = get_page( $page_id );
    $title = $page_data->post_title;
    $content = apply_filters('the_content', $page_data->post_content);
    echo $content;
    ?>

    using this method, is there another way to get the slider to show up? thoughts?

    Thread Starter jedifunk

    (@jedifunk)

    using the shortcode seems to be the best option in this instance.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: WP Coda Slider] 3.6.2 won't load JS’ is closed to new replies.