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

Use bootstrap for wordpress gallery? [closed]

The gallery shortcode is contained in the wp-includes/media.php file. There is a function gallery_shortcode( that does all work. About 25 lines down you find: $output = apply_filters( ‘post_gallery’, ”, $attr, $instance ); if ( $output != ” ) { return $output; } This code goes out and runs any filters tethered to post_gallery, and if … Read more