anyone have anything on this?
Hi all,
How can I change the image size in full width-posts to the width of the text? It’s now only a small square of 80×80 px.
I know I can insert a photo in my text area and delete the small image preview by adding CSS, but I only want to apply this to a number of posts. I would like to keep the thumbnails when showing an overview of news items.
Hope to hear from you, thanks!!
The option in the Gallery pop-up with the title and description “Gallery Preview Image Size – Choose image size for the small preview thumbnails” lets you choose the size of images used in the thumbnails.
Hi,
how can I set a Video-Thumbnail? There is no function to set one. When I had buy the Theme 2 Months ago, the Support told me that this is a nice idea for a new feature for the next update. Any Chance to set one?
How can I set a fallback from mp4 to ogg?
If there is no way I found another Solution. I insert a Picture and linked it to the Videofile with http://… . Now it opens in a lightbox with Fullsreen. Here I have three questions.
1. How can I change the Hover-Icon above the Picture from an arrow to an Play-Icon?
2. The Video play in Fullscreenmode inside a Lightbox but there is no way to close it. How can I fix this?
3. Fallback?
What is the best way to change the size of videos on Frontpage?
Best regards
Hi support team,
anticipate enfold is a really impressive theme. However, I have a question. I have pictures in galleries available in portrait and landscape format. (ratio: 2:3 or 3:2) Between the images is partially above and below unwanted space. But I don’t really know why.
Now the settings are:
Gallery Style: Small thumbnails
Gallery Preview Image Size: No Scaling
Gallery Columns: 2
…
Is there a way to fix the problem?
Thanks for solving it.
Best regards
Frank
I have added the “blog posts” element to a page using ALB, in grid format, in 1/5 columns. If there is no “featured image” attached to a post, then the Fallback Image (Standard, Link, Quote, Gallery, Video, Image, Audio ) does not show up, and in turn collapses that element, if I place just one image as featured in one of the posts that shows, then they expand, if none…nothing.
See screens following:
With Thumbnail: http://bit.ly/1enBEK6
Without Thumbnail: http://bit.ly/1aujhOC
Hi Andreas,
Please add following code to Quick CSS in Enfold theme options under Styling
#top .thumbnail_container img { margin: 0 auto!important; width: 170px; height: 257px; }
Regards,
Yigit
I would like to reorder/shuffle my portfolio thumbnails…..Please help me out how to do it
Hi Devin,
On another similar subject, a quick tech lesson needed here – is it possible to standardize the size of preview thumbnails on a gallery page? I have a large pic with 7 to a row thumbnails underneath (about 30!) and they’re all over the shop in shape & size…
Thanks,
Leisel
Afaik there’s no plugin which allows you to set the featured image automatically because it doesn’t make sense in most cases.
WordPress just saves the id of the (full size) image when you set an image as “post thumbnail”. This id will be used to query the url path to the full size image OR to a thumbnail of this image (depends on the theme code).
If you already uploaded “high resolution” images and set these images as post thumbnails you just need to regenerate the thumbnails with: http://wordpress.org/plugins/regenerate-thumbnails/
Afterwards wordpress will use the proper thumbnail size of these images for the post thumbnails. If you want to change the thumbnail size open up and search for /wp-content/themes/enfold/includes/loop-index.php
$current_post['slider'] = get_the_post_thumbnail($the_id, $size);
Replace the $size variable with any custom value like
$current_post['slider'] = get_the_post_thumbnail($the_id, 'full');
or
$current_post['slider'] = get_the_post_thumbnail($the_id, 'large');
or any other thumbnail size which is defined in functions.php or which you created with http://wordpress.org/extend/plugins/simple-image-sizes/
Hi vic98,
Can we see the page with the pixelated/blurry thumbnails? Have you regnerated your thumbnail images already?
Regards,
Devin
Hi: As you said on ThemeForest answering to turner2f that enfold theme works with Yith Magnifier, I purchased it. Now I can’t make it work, even after trying all combinations, adding the piece of CSS code you provided; you can see issue here: http://www.vaping-circle.com/product/sigelei-zmax-v3-flat/ I’ve tried regenerating thumbnails thru ‘Force Regenerate Thumbnails’, and so and so… Can you give me some help please?
@rbellei – You can easily hide the preview thumbnail with css (because video posts do have a special “format-video” css class). Insert following code into the quick css field
.single-post .format-video.single-small.with-slider .small-preview {
display: none !important;
}
Hi,
Some of the images you uploaded are missing including those use on the Color Section. Can you please regenerate the thumbnails? Use this plugin: http://wordpress.org/plugins/regenerate-thumbnails/
Or manually re-upload them again.
Regards,
Ismael
Is there a way to set a maximum width for the Ajax image list portfolio section (the area that pops up after you click a thumbnail that displays the image?).
I would like to decrease the size by about 100px, because it’s displaying my portrait images way too big. It’s also making them blurry, which I don’t understand, because the width of the images is well above the 610px width area that they are filling.
Hi kriru,
Use the plugin to first regenerate all of your thumbnails. None of them seem to have actually be generated: http://wordpress.org/extend/plugins/simple-image-sizes/
When outputting the grid you can choose the size of the image being shown by selecting “Choose the preview image size manually” from the Preview Image size dropdown. Then you can choose an image size you want so that they will be consistent. There are of course the WordPress limitations which can do some odd things with images. So its best to use images that are near in size and bigger on both edges than the place they will be displayed.
For your current grid the image container is 248px wide so picking an image with at least that width will keep the image from showing pixelated.
Regards,
Devin
Perhaps this plugin may also be of assistance in your case, if supported by your server configuration:
http://wordpress.org/support/plugin/imagemagick-engine
Hi bobbymc,
Try re-downloading the theme from your downloads on ThemeForest and then re-installing the theme folder by folder via FTP. For a quick guide on uploading your theme over FTP take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750
Regards,
Devin
Open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodespostslider.php and replace
$output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";
with
$output .= $thumbnail ? "<a target='_blank' href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";
and
$permalink = '<div class="read-more-link"><a href="'.get_permalink($the_id).'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a></div>';
with
$permalink = '<div class="read-more-link"><a target="_blank" href="'.get_permalink($the_id).'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a></div>';
Hi!
I will put a target blank to the single post thumbnail for my Blog in Grid Layout and also a target blank for the Title of the Blog posts…
Please help me to figure out where i must put target=”_blank”
Thank you so much
Hi,
You can use a plugin to do that, however it may require some coding.
Regards,
Josue
Hi,
I have replaced the code with the above and tried both full and extra_large settings but the thumbnails still look blurry.
Thanks
You can change the preview image size with a filter. Insert following code at the bottom of functions.php
add_filter('avf_ajax_preview_image_size','avia_change_ajax_preview_image', 10, 1);
function avia_change_ajax_preview_image($size){
$size = 'featured';
return $size;
}
and (if necessary) replace the “featured” thumbnail size with “full” or “extra_large”.
You can change the preview image size with a filter. Insert following code at the bottom of functions.php
add_filter('avf_ajax_preview_image_size','avia_change_ajax_preview_image', 10, 1);
function avia_change_ajax_preview_image($size){
$size = 'featured';
return $size;
}
and (if necessary) replace the “featured” thumbnail size with “full” or “extra_large”.
Wow, fantastic. Quick response excellent result. The images look great. Many thanks
Another image issue, I’m using the Ajax Portfolio. I wanted to use the Gallery setting but the thumbs are really blurry also. I would like to display either 4 or 6 thumbnails.
Also the large image with the Ajax portfolio I have created at 800 x 650 I would love it if this could be sharper too.
Hi,
I fixed it. I changed the thumbnail size of the gallery images and applied a small patch which fixes a js error when you use menu names with non Latin characters (eg Cyrillic or Greek characters).
Hi,
Please edit that line on functions.php, replace it with:
$avia_config['imgSize']['portfolio_small'] = array('width'=>514, 'height'=>370 ); // images for portfolio 4 columns
It will double the size of the cropped portfolio thumbnail. Regenerate the thumbnails: http://wordpress.org/plugins/regenerate-thumbnails/
Regards,
Ismael
Could you advise the correct side of the images to ensure the thumbnail images generated within the 4 column portfolio gallery are rendered sharp.
When I click on the light box feature they look great- sharp as, but the thumbs are very poor quality. This is my portfolio of work so it needs to look great.
I have tried this size mentioned in the theme documentation but it looks blurry too.
$avia_config = array(‘width’=>260, ‘height’=>185 ); // images for portfolio 4 columns
I’m currently making them 800×650 (the size I got off a screen grab of the sample site)
I look forward to your response.
On the gallery with the large image and thumbnails below, is it possible to transition to a thumbnail on a clicked thumbnail instead of just hovering over it?
Also, Instead of having rows upon rows of gallery thumbnails (yes I have 12 per row) is it possible to keep them all on a row and have an arrow for more thumbnails or they would scroll right to left as you went through the gallery?
The gallery as a whole would function a lot like this: http://soliloquywp.com/addons/thumbnails/
Thanks for all of your help.
Having the same problem. Have set Featured Image for each item and still just getting portfolio page item name on grid and no image displayed.
Thanks