How select multiple document as like media gallery
How select multiple document as like media gallery
How select multiple document as like media gallery
Ended up like this. Made this changes and it worked: changed: ‘base’ => str_replace($big,’%#%’,esc_url(get_pagenum_link($big))), into: ‘base’ => get_permalink( $post->post_parent ) . ‘%_%’, And changed: ‘format’ => ‘?paged=%#%’, into: ‘format’ => ‘paged=%#%’, Then added a filter with rewrite tag and rule: add_filter(‘init’, ‘post_gallery_add_rewrite_tag_rule_2022’); function post_gallery_add_rewrite_tag_rule_2022() { add_rewrite_tag(‘%current%’,'([^&]+)’); add_rewrite_rule(‘([^/]+)/paged=/?([0-9]{1,})/?$’, ‘index.php?name=$matches[1]&paged=$matches[2]’, ‘top’); } Then (after uploading functions.php) in … Read more
Custom post types seem the best match for what you want: you get the permalinks, comments, … You only need one of the many rating plugins as an extra. If the users have accounts you could try making them authors, it could work since they exist in the users table so the posts table can … Read more
Your problem is that you installed it in a subdirectory of WordPress. Both WordPress and Gallery 3 will use virtual URLs in their domain, and with them both acting on the same folders, neither system knows what to do. So you have http://blog.url/ and http://blog.url/gallery3/ which is also http://g3.blog.url/. The subdomain will point to that … Read more
Someone has just answered the question for me on the wordpress forum. It turns out that there was 5px of padding in the gallerys css file (line 301) that I hadn’t found: .ngg-widget, .ngg-widget-slideshow { margin:0; overflow:hidden; padding:5px 0 0 0; <— change this to 0 0 0 0 or just 0 text-align:left I didn’t … Read more
SlideShowPro is the best Flash slideshow player for WordPress Back before it was “Un Cool” to use Flash I used a flash component called SlideShowPro for Flash. It is very extensible and uses an XML file to load the content into the slideshow. It also allows you to customize all aspects of the display using … Read more
Under Gallery Settings, set “Number of images per page” to 1. Then check the box for “Add hidden images.” This should display just the first thumbnail in you gallery, and when you click on it, you can navigate through them in a lightbox. Then you have to remove the page navigation at the bottom of … Read more
Are you going to put newlines in there between each image? or just spaces? I’ll put in both for this example, checking if there’s a newline. You would want something like this in your functions.php: add_shortcode(‘my_gallery’, ‘gallery_function’); function gallery_function($atts, $code=””){ $files=preg_split( ‘/\s+/’, $code ); // Added in from Jan’s comment. foreach($files as $img){ if($img==””) continue; … Read more
you can always just set a css tag display:none to the caption element
You should try to install the NextGEN gallery plugin. http://wordpress.org/extend/plugins/nextgen-gallery/ With it, you can easily achieve the page you want. Once installed, create a few galleries and upload your pictures. You can order your single galleries into albums. On the pages listing the galleries and the albums, you can see their unique ID. Look the … Read more