Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Dalton Rooney

    (@daltonrooney)

    Hi Jonathan,

    It looks to me like your header does not have the wp_head hook. Also, you are loading jQuery manually, which will cause a conflict with the plugin.

    Try adding this line

    <?php wp_head();?>

    Just before </head> in your header.php template, and get rid of whatever is loading that version of jQuery, and see what happens.

    For future reference, if you want to load javascript libraries in your theme, the best way to do it is with the wp_enqueue function. That way even if another plugin tries to load up the same script, it is only loaded once.

    Cheers,
    Dalton

    Thread Starter jonathantopf

    (@jonathantopf)

    Hi there, thanks for that, adding that line fixed the problem witht he slide show but id broke the other javascript on the page, i found if i have both in there the both work, is this likley to cause problems in the future?

    j

    Plugin Contributor Dalton Rooney

    (@daltonrooney)

    Hi J,
    Glad that fixed the problem. I’m surprised it’s working with two versions of jQuery loaded, but if it works, it works!

    Cheers,
    Dalton

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Portfolio Slideshow] Images appear as list?’ is closed to new replies.