How to make page template with admin able to select NextGen Galleries to be part of the layout?

You can add galleries directly to a template by calling do_shortcode() to run the gallery shortcode. <?php echo do_shortcode(‘[nggallery id=”1″ template=”example”]’); ?> Edit: sorry, writing decaffeinated so short attention span 🙂 Add some custom fields to your product pages to let your client pick which gallery goes on that product. If you like, just use … Read more

slide change on hover with nextgen scrollgallery [closed]

Solution I am providing intiates the click event when mouse enters the thumbnail (with a delay to avoid passing mouse events). jQuery(‘.scrollgallery .thumbarea img’).hover(function(e){ this.ScrollGalleryHover = setTimeout(‘initiateClick(“‘+jQuery(this).attr(‘src’)+'”);’,500); },function(e) { clearTimeout(this.ScrollGalleryHover); }); function initiateClick(src) { jQuery(‘.scrollgallery .thumbarea img[src=”‘+src+'”]’).click(); }

How to increase the thumnail size of nggallery carousel template

I’m not sure if I understand you right, but this is how you can do it: <img src=”https://wordpress.stackexchange.com/questions/109424/<?php echo $image->thumbnailURL ?>” alt=”<?php echo $image->alttext ?>” width=”your_width_in_pixels” height=”your_height_in_pixels” /> If this is the anwer then it’s not related to WordPress but to HTML! Have a nice day.

Error while uploading photos

make sure you’ve tried… flushing any caching plugins you might be running, as well as server and/or browser caches. deactivating all plugins (yes, all) to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s). If you can’t get into your admin dashboard, try … Read more