Carousel Gallery (jQuery) for WordPress [Updated January 2010]

This plugin builds on the builtin WordPress gallery, and replaces any gallery inserted using the gallery tag with a neat jQuery powered carousel. By carousel it means you can browse through all the pictures in the gallery and they’ll slide from the right to the left and seamlessly start over at the end.

The plugin uses jQuery and a jQuery plugin called jCarousel.

Download

Download the plugin from the WordPress repository

Further Development

Due to my busy schedule, development on this plugin is intermittant and not quite as often as it deserves. Fortunately, the plugin is open source. Are you an experienced plugin developer willing to lend some love, then you’re welcome to get co-ownership of this plugin. Let me know.

[Update]: Added an IE “loop bug” fix. Thanks to Luqman Amjad.

Responses to “Carousel Gallery (jQuery) for WordPress [Updated January 2010]”

  1. I wish to add this gallery on my site.. pls give tutorial

  2. sebastien says:

    Thank you so much Joen.

    No question, no demand. Just wanted to say that you rock !

  3. Gopal Raju says:

    The plugin is just what I was looking for…. Just one question: How do I remove the wordpress “featured image” from the carousel?

  4. Bobby Noonan says:

    So, I’ve read every comment here. I’ve triend uninstalling and reinstalling. I’ve tried everything…When I add the [gallery] tag to my Pictures page, nothing happens. It just shows the images as they would normally. I do not see a carousel. I’d really like to get this working, because everyone else seems to like it!

    Please help
    Bobby

  5. stck says:

    Hey Joen,

    I was wondering if it would be possible to have a video for a slide.
    Instead of calling the url of the image, you call an iframe from vimeo.com for exemple. Is this feasible you think?

  6. Tom says:

    Very good gallery. I used this one on http://www.unitedcodings.com/
    Thank you very mach.

  7. rob says:

    Hi,
    Here you can find a Carousel Gallery, with install instructions for WordPress: http://www.flashxml.net/3d-carousel-menu.html#swmi-wordpress .I am using it on my website and I am very pleased with it.

  8. crawpdx says:

    Great plugin- I had a troubleshooting question. I had the galleries working great on a development site and when I took that site live, the gallery thumbnails show up but the main image is missing. Have you ever seen that before?

    I tried deleting and re installing the plugin with the same result. Is there a DB table I need to delete before re installing the plugin?

    The site is http://www.hensteinscustomcabinets.com/

    Thanks for any help

    • crawpdx says:

      For anyone that is interested- the plugin works great in all browsers except ie8. The thumbnails appear “smushed” so I used this CSS to fix it. (you have to have the browser specific css jquery plugin installed to do this)

      .ie .carousel-controls a{
      float:none;
      }

    • crawpdx says:

      There was a conflicting plugin so this was not an issue. Thanks for the great plugin.

  9. werner says:

    Just a quick tip: to get rid of the featured image replace the following code.

    Before:
    $attachments = get_children( array(‘post_parent’ => $id, ‘post_status’ => ‘inherit’, ‘post_type’ => ‘attachment’, ‘post_mime_type’ => ‘image’, ‘order’ => $order, ‘orderby’ => $orderby );

    After:
    $attachments = get_children( array(‘post_parent’ => $id, ‘post_status’ => ‘inherit’, ‘post_type’ => ‘attachment’, ‘post_mime_type’ => ‘image’, ‘order’ => $order, ‘orderby’ => $orderby, ‘exclude’ => get_post_thumbnail_id()) );

    cu werner

Leave a Reply