Click thumbnail, change main image – NextGen or somethign else?
The NextGEN Pro Horizontal Filmstrip Gallery display with caption option will display basically the same output as what you are referring to in the other example.
The NextGEN Pro Horizontal Filmstrip Gallery display with caption option will display basically the same output as what you are referring to in the other example.
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
Of course it’s possible. Galleria is a jQuery plugin that is similar, but better (fancy slide transition effects and more). You could include it yourself (see their documentation) or if you prefer WordPress plugins look at Photo Gallery which seems like it’s based on galleria (haven’t tried it). Another really popular gallery plugin is the … Read more
Ist and custom gallery, i think. See in the source of http://d3dgk6r8ca2pzn.cloudfront.net/js/gallery_1332969334.js: /** * Image gallery used in product detail pages and customization pages * * @module Gallery * @author Preet Jassi * @file gallery.js * @copyright (c) 2011 Indochino Apparel Inc. */ Use the yui lib from Yahoo: http://yuilibrary.com/ But maybe you find an … Read more
Have you tried this for NextGen? – http://wordpress.org/support/topic/nextgen-image-gallery-captions Excerpt (many other useful tips at the linked thread): ENABLING CAPTIONS BELOW GALLERY IMAGES When you add a gallery to a post/page, you get this by default: [nggallery id=1] You need to add this: [nggallery id=1 template=caption] GETTING THE CAPTIONS YOU JUST ENABLED TO SHOW-UP When importing … Read more
In order of perferance: Option A : Use the plugin that you mention because the footer can have it’s own custom sidebar, this makes it easy to manage. If you don’t like that plugin it still makes sense to use a custom sidebar for your footer, there nothing stopping you from writing your own widget … Read more
It looks to me that those images, along with their divs, have been added directly into the editor. So, it’s probably being updated by a developer, or at least someone HTML savvy. I’m not sure what you mean by ‘meta boxes’. A meta box is basically any collapsible box within the WP admin interface. If … Read more
I found my mistake. I used the same attachment images for the other post. So, WordPress can’t get images that already attached to another gallery.
$Featured_image = $wpdb->get_results(” SELECT p.* FROM net_5_postmeta AS pm INNER JOIN net_5_posts AS p ON pm.meta_value=p.ID WHERE pm.post_id = $da_id AND pm.meta_key = ‘_thumbnail_id’ ORDER BY p.post_date DESC LIMIT 15 “,’ARRAY_A’); A related solution, to query for posts WITHOUT providing a post ID (ordered by post date, and using the wp_ database prefix): SELECT p1.*, … Read more
Your question doesn’t show any code examples or tell me a lot about what you want to show in the caption, so I’ll leave that out and make up my own code. Here is one way to show a caption on hover using jQuery: https://jsfiddle.net/steckinsights/yzfpg7n0/25/ Now, doing this with a gallery means that you’ll need … Read more