I just tried that plugin and the images in my portfolio grid disappeared, the thumbnails on my galleries stopped animating in, and the lightboxes stopped working at all.
The lightbox pretty much sucks on the iPhone — the formatting is funky, and having to click on those little arrows is really cumbersome. I would LOVE it if there were some improvement on this. Please let me know if you have any ideas.
Thanks Dude,
The reason behind wanting a variable was because I initially wanted to use pages instead of portfolio items, but I couldn’t see how to easily create a grid with thumbnails just like what a gallery does.
If there’s a way to easily create a gallery-like grid with thumbnails that point to pages, that would negate my need for portfolio items and work around the slug limitation.
Thanks, but that is not the portfolio page or style I was meaning. In the AJAX portfolio sample here.
http://kriesi.at/themedemo/?theme=enfold
If you click on Single Portfolio: Big Slider, the image and thumbnails are below, they are within the AJAX Porfolio page. They are not on a page on their own like the “other” Single Portfolio Big Slider sample page in the Portfolios section. (I know, it’s confusing for me too).
That is the one I was hoping could resize, when it is on the AJAX portfolio page. So image on the left, with the thumbnails below. When you roll over the thumbs, the image that loads above would resize (or show the full image), not just the “featured image” size.
Thanks for your help.
Hi!
It will inherit the size of the container. The size that you set on the “Slideshow Image Size” is the thumbnail size that you’re going to use on the slider but not the actual size of the slider.
Best regards,
Ismael
Hi PeterPan2!
We will need to see the site and example live so we can inspect the images in place and see what their size is relative to the container.
Regards,
Devin
excellent. That worked. I added css styling to it:
$description = get_post_field('post_content', get_post_thumbnail_id());
echo '<div class="featured-caption">' .$description.'</div>';
Is that correct?
Hey!
It displays first image 756x1030px in lightbox which is the actualy size of the image as you can see here http://i.imgur.com/AEVzJXV.jpg
You should choose to insert images fullsize
Cheers!
Yigit
Working perfectly, thanks!
:o)
haha, sorry, realised you’d changed the original code/post…
Hi!
Sorry my bad :) Edited the code in my previous post. Please replace first one with this one
Best regards,
Yigit
Many thanks Yigit.
That sorts out the thumbnails perfectly, but unfortunately it also affects the larger image above too – which had been fine…
Hi!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.avia_transform .avia-gallery-thumb img { height: 125px; }
Cheers!
Yigit
-
This reply was modified 12 years, 4 months ago by
Yigit.
Hi – yes, the gallery test page is here:
http://enamellers.org/bsoe/?page_id=2817
Hey Niels!
Can you post the link to your website?
Cheers!
Yigit
Hi Yigit!
The code is working only when I’m using “Image Element” to keep images.
But when I’m doing the same thing with gallery, its still not working.. :(
please check the link below. in this link left top three images are kept by using “Gallery from Media Element” and the last three images are kept by using “Images from Media Element”.. So its working when I’m using “Images from Media Element” which as I explained earlier I don’t really want to use it..
please have a look at the link below and compare the difference..
http://goo.gl/DJmeeH
Thanks
Hi!
Edit includes > loop-index.php, find this code:
if($slider) $slider = '<a href="'.$link.'">'.$slider.'</a>';
if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>';
Below, add Dude’s code:
$description = get_post_field('post_content', get_post_thumbnail_id());
echo $description;
Edit the images on Media > Library > Edit and put the caption on the Description field of the image.
Best regards,
Ismael
In creating a gallery with mixed portrait and landscape proportion images, I find that the thumbnails size awkwardly (though only in height), breaking the neat grid structure – sometimes even leaving complete gaps within the thumbnail grid.
Is it possible to force the thumbnails to display at a fixed height so that the grid structure stays together?
When I try to make a gallery with one big picture and thumbnails – big picture being natively a very LONG one but being set to portfolio – everything works except there is a white box under the main photo that looks like it may be ~300px long.
Also, the overlay images on images are wrong. Instead of getting an icon or something when I hover an image, I get E869.
Thanks!
Hi!
2) Please go to wp-content\themes\enfold\js\prettyPhoto\js folder and open jquery.prettyPhoto.js file and search for
allow_resize:true,allow_expand:true
and change it to
allow_resize:false,allow_expand:true
Cheers!
Yigit
Dear Kriesi Team,
I’ve got a question concerning the enfold theme in combination with the WooCommerce shop plug in. We are a company, that would like to sell video clips via the woocommerce shop. The whole layout incl. programming was done by a programmer and is oriented on big video agencies like shutterstock.com or corbismotion. We created a catalog of small thumbnails (jpeg) that are loaded first. While mouse over, a low res video starts to play. By clicking on the video, you get into the article details and can buy the article. Here is a screenshot of the catalog view incl. mouse over effect:
WooCommerce Thumbnails" />
We have noticed, that all small thumbnail images are a little bit unsharp, although the woocommerce thumbnails size (Woocommerce settings -> Image options) matches exactely the pixel size of our source jpegs, that I’ve uploaded to each article and which are clearly sharp.
Woocommerce or WordPress must either do an unnecessary resizing, that we don’t want or must apply a compression to the jpegs.
Due to the responsive design, the images getting more and more unsharp when reducing the windows size of the browser. I found out, that woocommerce scales the thumbnails to five different pixel sizes, depending on the size of the browser window.
Thumbnail size full screen window 187×105
reduce window size Thumbnail jumps to 159×89
reduce window size more Thumbnail jumps to162x91
reduce window size more Thumbnail jumps to 208×117
reduce window size more Thumbnail jumps to 266×150 (its a view like on an i-phone display)
Is there a way that we can make our thumbnail images sharper throughout the whole responsive layout and avoid unnecessary image processing by woocommerce/wordpress?
Thanks for your answer!
Thanks for your reply Yigit!
May be we can compromise on point number 1.
But regarding point number 2, actually it is allowing my to zoom in but to a certain level.. like if I want to zoom in and actual size is like 4000×3354 its not gonna show me the actual size which is 4000×3354.
For example try the link below,
http://goo.gl/Wnoecr
under this link try to access the picture on the top named “WTC Bahrain_Day1_HR_Temo” (which show the name in tool tip)
its actual size is 4000×3354 but now its not even showing me a buttong for the zooming in :(…
could you please solve this issue?
Point 3 has solved.. thanks for that :)
Looking forward for your reply
Hi!
Yes – you can use the after_setup_theme hook – i.e. following function would overwrite the entry_without_sidebar thumbnail size which is define in functions.php.
function avia_after_parent_theme_setup() {
global $avia_config;
$avia_config['imgSize']['entry_without_sidebar'] = array('width'=>1030, 'height'=>450 );
}
add_action( 'after_setup_theme', 'avia_after_parent_theme_setup', 10);
Regards,
Peter
Hi Gianluca!
You need to use this plugin to regenerate your images: http://wordpress.org/plugins/regenerate-thumbnails/
It does still work with 3.7.
Regards,
Devin
Here are some screen captures visually depicting my comment above in post id#184636
1. A hand-coded from scratch thumbnail gallery showing a part of my Youtube video gallery. This file resides outside of the WordPress environment and is fetched by an Ajax call. There is no < head > or < body > in the fetched HTML. It’s straight HTML with the CSS snagged from the parent page which hosts the < a > and href call firing the lightbox overlay hosting all the thumbs. This is illustrated in the screen capture below. Even with this complex Ajax fetch which requires perfect coding to execute correctly, no errors can be found with the automatically generated play graphic overlaying the automatically generated Youtube thumbnails. They are centered correctly. Compare this to the thumbnail in Item 4. below which shows the play graphic shifted downward in an Enfold template. Something in the CSS is affecting it and I haven’t nailed it down yet.

2. An example of the lightbox window that opens when clicking the thumbnails.

3. Enfold themed page with video thumbnail and comment section.

4. And here is the bottom of the page and an example where the play graphic shifts downward due to some CSS properties in Enfold. See red arrow. If img-width: 100% was not commented out in base.css, the thumbnail would be 480px wide and part of the graphic would reside outside the darker opacitized text content area on the right side of the page. FYI, 480px is a default size for youtube thumbnails in their API and my CSS shrinking the thumbnail is ignored in IE due to img-width: 100%

5. Point five is not related to img-width, but I thought I would share a tidbit about the CSS in your Comments system while I’m thinking about it. You may want to consider giving the .comment-entry CSS a property of display: inline-table;
It will vastly improve the flexibility of your comment layout for users. Right now, the entire parent Div will not expand and contract dynamically. For example, if you use the Ajaxify plugin recommended in your forum by Dude, the parent Div hosting the comments entry will now expand and contract like it should if displayed as an inline-table. The colored background DIV will work great and scale up and down. With the current CSS in Enfold, it does not. So clicking on “reply” or add a comment creates a big dynamic hole in the background where the comment form appears. The colored background properties are transparent and do not expand and contract due to the current CSS properties on .comment-entry. I am sorry, but all of this is being developed on Localhost and I have no public link to show you. The concept of an inline-table setting should not be hard for a coder to visualize if they know CSS. Pass it along. They will get it and it will add up.
And finally, the reason for showing you all these screen captures, is maybe lost in all the text here. It can be boiled down to two things:
6A. I am looking for some direction working around img-width: 100% as it relates to Enfolds performance. Is it important?
6B. What global CSS property might be shifting my play graphic downward? Point me in the right direction among your CSS files. I will probably figure it out from there.
Cheers.
Hi!
1) Please try re-generating thumbnails
2) Please refer to this topic https://kriesi.at/support/topic/collapsable-menu/#post-165144
Regards,
Yigit