tizz
Forum Replies Created
-
@wittigdocs, NextGEN Slideshow Widget is made for that purpose, a slideshow in a sidebar.
P.S.: Justified-Image-Grid is a totally different product and a commercial one so you have to contact its vendors.
@samster19, at http://newenglandphotography.net/ I see what you requested for. Clear your cache.
@samster19, here is something closer to what you want
.slideshow object { border: 5px #006A6A solid; box-shadow: 1px 2px 5px #151515; }@denisephilipbar, the issues are similar but they could not have the same cause, so everyone gets the most appropriate attention in their own topic.
To both I may further suggest to try another lightbox effect among those available, but please @denisephilipbar open your own topic, as per the forum rules.@samster19 You have to put those lines in Gallery > Other Options > Styles
@jakob1975 I don’t think your two installations are perfectly identical. Probably in your production site you haven’t tested in the right way, e.g. in the page that works I don’t see the SEO plugin activated as in the other, and in the page that doesn’t work also social icons and menu and title icons doesn’t work, so it seems that some stylesheets and js scripts aren’t loaded.
You have to deactivate all of your other plugins at once, clear browser cache completely, update the page. Also, I see that you have a cache plugin, so before this operation you have to empty all your site caches via that plugin.
With any plugins activated but NextGEN, caches emptied (site and browser), update the page and it should works. If not, deactivate your current theme too and activate one of WordPress default theme, and in this basic situation it should works.
After this test you’ll know for sure if something is in conflict, or if you have to investigate at another level.@jakob1975, that’s because your site doesn’t load ngg-image thumbnails but display the attach_to_post/preview.
What happens with a WordPress default theme activated and all other plugins deactivated? This is a necessary step to investigate any conflict.Gallery Settings > NextGEN Basic Slideshow > Enable flash slideshow > No
Forum: Themes and Templates
In reply to: [Leaf] Remove White Space Between Sidebar Widgets – not resoved@leopardnation add this in custom CSS area:
.widget-title {background image: none;}
Next time open your own topic, because your question has nothing to do with O.P.’s issue.@northernmonkeyz, I don’t know what you mean when you talk about “posting to category method”, but installing NextGEN doesn’t involve your posts in any way.
Surely if you want those 60+ images displayed with NextGEN you will need to upload them as NextGEN galleries, and you can display them where you want it, those same posts or whatever post or page.@yesnovato, your question is too approximate. It is not clear what, where and how you want to get what you ask for.
Forum: Plugins
In reply to: [Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] About caption@alejandromb, there aren’t any NextGEN files loaded in that page, so ask to the vendor/author of your premium framework.
Forum: Installing WordPress
In reply to: Cant View My Theme, Only The Blog Pagecaseyharish, these forums don’t support commercial products. You must contact the vendor/author of your theme.
Forum: Themes and Templates
In reply to: [Leaf] Specify image dimensions GTMetrix@cagatay Belgen Yes I know that is not ideal, maybe a function in functions.php it would be better.
Sorry I’m not a coder but I have modified those “callings” in home.php in that way and it works well, so I have shared my fix for OP @cyrilb245, or anyone interested in.
Anyway, sizes are different for some categories maybe, not for every image. So you can have some categories in home page (the “problem” is only in home page, not for sidebar and widget), but I don’t think that you have more than 4-5 categories (do you have?) – beyond the fact that all categories can have featured image of the same size, it’s even better aesthetically.
Also, the missing size is only for the first image of the category, the bigger one, not for the other three images in the category.
A sample of what I have done:<?php if ( in_category (123) || in_category (45) ) { ?> <img src="<?php echo leaf_get_post_image( null,null,true,null, 'large' ); ?>" width="300" height="120" alt="<?php the_title(); ?>" class="attachment-post-thumbnail wp-post-image"> <?php } elseif ( in_category (67) ) { ?> <img src="<?php echo leaf_get_post_image( null,null,true,null, 'medium' ); ?>" width="217" height="200" alt="<?php the_title(); ?>" class="attachment-post-thumbnail wp-post-image"> <?php } elseif ( in_category (89) || in_category (101) ) { ?> <img src="<?php echo leaf_get_post_image( null,null,true,null, 'medium' ); ?>" width="200" height="300" alt="<?php the_title(); ?>" class="attachment-post-thumbnail wp-post-image"> <?php } ?>I don’t know if there’s a better way to write it.
Forum: Themes and Templates
In reply to: [Leaf] Specify image dimensions GTMetrix@cyrilb245, you can modify home.php, specifying image dimensions with a thing like that (sample):
<img src="<?php echo leaf_get_post_image( null,null,true,null, 'large' ); ?>" width="xxx" height="xxx" alt="<?php the_title(); ?>" class="attachment-post-thumbnail wp-post-image">
Use a child theme to do this, and search in the file whereleaf_get_post_imageis called.