Continuous jQuery Slider / Carousel Plugin with linkable slides [for WooCommerce]

If you view the source for your carousel, you’ll see a lot of how it is implemented. The first step would be reproducing their markup with your products. Essentially their markup looks like one #carousel container div and all the items inside their own div. <div id=”carousel”> <div> <img src=”https://wordpress.stackexchange.com/questions/106915/img/fruit1.png” alt=”fruit1″ width=”200″ height=”200″ /> <span>Apple</span> … Read more

Need help making Gallery slideshow with lightbox work correctly

this usually happens because lightbox gets appended to every image . It would look like this in the source code <IMG src=”https://wordpress.stackexchange.com/questions/66237/your image” rel=lightbox”> You need to add a gallery name to the gallery so that it looks like this <IMG src=”https://wordpress.stackexchange.com/questions/66237/your image” rel=”lightbox[gallery1]”>

Hover/Zoom on Lightbox gallery

Betty, It doesn’t look like the plugin you are using supports zooming in an image. This means that you would have to modify the plugin, or add another plugin that would modify the images that are being loaded by the lightbox plugin. Here’s a link to a pretty neat jquery plugin to zooming images: Jquery … Read more

Looking to implement a scrolling gallery in my theme

Pick up a copy of Advanced Custom Fields along with the Gallery Field add-on and you should be able to customize on-page galleries to your heart’s content. Just loop through the gallery and output the code to drive whatever JS based output solution you are pondering.

how to show list image in gallery?

I guess you should use get_post_gallery_images function, this is example from documentation below function pw_show_gallery_image_urls( $content ) { global $post; // Only do this on singular items if( ! is_singular() ) return $content; // Make sure the post has a gallery in it if( ! has_shortcode( $post->post_content, ‘gallery’ ) ) return $content; // Retrieve the … Read more