problem with nextgen plugin
one of those weird problems. try deactivating – reactivating nextgen – otherwise, u might have to delete it and re-install it make sure to backup ur media good luck
one of those weird problems. try deactivating – reactivating nextgen – otherwise, u might have to delete it and re-install it make sure to backup ur media good luck
Alternative? http://shibashake.com/wordpress-theme/media-library-plus-plugin
For anyone interested I found a solution to what I wanted. You simply need to create a custom template Then I accessed the images like this: <?php foreach ($images as $image) : ?> <?php echo do_shortcode(‘[singlepic id=”‘ . $image->pid . ‘”]’); ?> <?php endforeach; ?>
I have not a ready solution, but small hints. You get all albums from nggallery with a small sql select. This get a array with all data to the album. If you have the right fields, change the * and use only the fields, there store your data. global $wpdb; $albumlist = $wpdb->get_results(“SELECT * FROM … Read more
NextGEN Gallery 2.0 caches galleries and albums in transients (plus their own custom transient expiration time record). You can clear the cache by deleting all transients. Easiest way is to install a plugin like Delete Expired Transients and delete all transients from the Tools menu — that plugin has an option for deleting either expired … Read more
As a test in the first conditional statement replace your //php comment in the else {} portion of your conditional with an actual echo statement to see whether the conditional is actually working properly, <?php if( is_page( 39 ) ) { // make your stuff here echo do_shortcode(‘[nggallery id=1]’); } else { echo ‘It works!’; … Read more
I struggled with the same issue but instead of using Nextgen (which goes way overboard in my opinion), I integrated Gallerific as a WordPress gallery shortcode replacement. It works really well and is very easy for the end user because they just have to add the images to the post and click insert gallery. I’ll … Read more
As a test in the first conditional statement replace your //php comment in the else {} portion of your conditional with an actual echo statement to see whether the conditional is actually working properly, <?php if( is_page( 39 ) ) { // make your stuff here echo do_shortcode(‘[nggallery id=1]’); } else { echo ‘It works!’; … Read more
I’ve had this same problem for ages and have currently landed on the following combination of plugins to resolve the issue: Media Tags Tag Gallery Cleaner Gallery Additionally, I made two modifications to the tag gallery plugin (to remove TimThumb and allow reverse ordering) This solution still has a lot of downsides including that it … Read more
Your solution has helped me find an answer to my own problem of getting the attribute of a certain shortcode, but I fear there may be an issue with your approach. You’re using preg_match to check the post_content, which will only return 1 match. If you have a post that has multiple shortcodes in it, … Read more