Hi,
I tried to hide/remove Layer Slider’s thumbnail navigation in mobile view:
@media only screen and (max-width: 767px){
.ls-thumbnail-wrapper {
display: none !important;
}
}
That code didn’t work in quick css section. Any instructions?
This is rather upsetting. Everything I add, everything I do, all changes I make, even really nice plugins I try to use as substitute end up looking broken and like everything on my site is screwed somehow:
I tried using this: https://wordpress.org/plugins/sp-news-and-widget/ (shame because it looks like its a really nice plugin)
This is what it looks like out of the box, no custom css, no weird configs, just standard: https://imgur.com/FMvhegO
Why? It’s like all the thumbnail presets and overlays and so on, messes up the images and clashes the text together and just borks everything. Even the image resizes when I hover over it. Why?
Why isn’t there a really nice news plugin or feature for Enfold? Or am I blind? I saw the “feed” page (“hello world”) looks fairly nice, but I can’t find it to use anywhere.
I recently update my WooCommerce plugin and all image product are being displayed bad now. I give you two screenshots (before and now) by private content.
I think the problem is that the image is being loaded is a thumbnail (120×120) instead the full image (500×1140), but I can’t find where can I change that.
Thanks!
Hey bishstan,
You image should be only as on the screenshot below. This huge image will make you website slow, the colored top and bottom are not visible here, hard to adjust and so do not make any sense. You need to cut and optimize the image.
Here is some theory for you:
http://www.wpbeginner.com/wp-tutorials/how-to-increase-or-decrease-wordpress-jpeg-image-compression/
If you need further assistance please let us know.
Best regards,
Victoria
Hi, is it possible to make the images on the search results page larger?
The client likes the circular images. Don’t want a counter in the results, just the thumbnails but circular if possible.
https://hughescf.com.au/?s=dining
CSS
.search-result-counter {
padding: 0;
width: 120px;
height: 120px;
line-height: 100px;
}
.search-result-counter img {
width: 100%;
height: 100%;
border-radius: 100px;
}
Hey gwinenvato,
Thumbnail was chosen for gallery image size. I changed it to Large. Please review your website :)
Best regards,
Yigit
Hi, I need to increase size of thumbnail of posts category page, Now is of default size: 80px (square format), but i’d like to increase it to 200 or 300 px (I don’t know yet). I’ve tried solutions suggested in the forum (change media settings and regenerate thumbnail with plugin, change of php code in archive.php…) but nohing seems to work. Blog layout in theme options is set on single author and small image because i like to have image on the left and excerpt on the right. Thanks, as always, for your help.
Hello –
My gallery images are uploaded and show up great in the light box, but the thumbs at the top of this page are all blurry. This page will be used as a template for all of the other hotel accommodation pages, so I need to have it set up properly from the beginning.
Thank you.
Hey derx,
Try the following:
1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
2. Go to Settings > Media
3. Change the entry_without_sidebar image size (increase its width / height).
4. Regenerate the thumbnails by clicking the button at the bottom.
Best regards,
Yigit
Hi Sophie,
Try the following:
1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
2. Go to Settings > Media
3. Change the entry_with_sidebar image size (increase its width / height).
4. Regenerate the thumbnails by clicking the button at the bottom.
Best regards,
Yigit
Hi Yigit
The gallery included doesn’t seem to respond to unchecking lightbox. You can see the link I provide below.
On a PC/laptop, hovering the cursor on it without clicking is possible, but on a mobile device there is no way to view the thumbnails without tapping on the screen. When this happens, I end up on a page with the image alone which I do not want.
Thank you.
Hello,
On my blog, the thumbnails before the posts on the left are not showing complete image. They are half grey. http://xandrianoir.com/blog/
But on the blog categories page , they show complete picture in square.http://xandrianoir.com/category/diary/
Can you please tell me how I can fix the thumbnails on the blog page to show complete picture?
Thanks
XN
We like the enfold theme very much. However, we have one major issue: How can we change the height of the big preview image to 100% of the original image? We can’t force the height using css since the theme creates a smaller thumbnail image. Actually, the original size of the image would be just fine. We don’t need the lightbox and set pointer-events to none.
Any suggestions?
derx
Hi,
You can add following code to your child theme’s functions.php file
add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
function enfold_customization_modify_thumb_size( $size ) {
$size['entry_with_sidebar'] = array('width'=>200, 'height'=>200);
return $size;
}
adjust the size and regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/ then you can remove the plugin :)
Best regards,
Yigit
Hi,
great, now it works! Thanks a lot, Ismael.
Is there a way to show the Read more link also? I have tried the code from Ricard from https://kriesi.at/support/topic/show-the-read-more-link-in-a-new-line-in-the-magazine-element/
if($excerpt)$output .= "<div class='av-magazine-content entry-content' {$markupContent}>{$excerpt}<p><a href='".get_permalink($entry->ID)."' class='more-link'>".__('Read more','avia_framework')."<span class='more-link-arrow'>→</span></a></p></div>";
in the functions.php but this does not work.
My whole code for the magazine element in the functions.php is
/* Magazine Layout Startseite */
add_filter('avf_magazine_settings', 'avia_magazine_thumbnail', 10, 2);
function avia_magazine_thumbnail($atts, $magazine){
$atts['image_size']['small'] = 'masonry';
return $atts;
}
add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
function avia_include_shortcode_template($paths)
{
$template_url = get_stylesheet_directory();
array_unshift($paths, $template_url.'/shortcodes/');
return $paths;
}
add_filter('avf_magazine_excerpt_length','avf_magazine_excerpt_new_lenght', 10, 1);
function avf_magazine_excerpt_new_lenght($excerpt) {
$excerpt = 200;
return $excerpt;
}
/* Zeigt Read more unter magazine eintrag */
if($excerpt)$output .= "<div class='av-magazine-content entry-content' {$markupContent}>{$excerpt}<p><a href='".get_permalink($entry->ID)."' class='more-link'>".__('Read more','avia_framework')."<span class='more-link-arrow'>→</span></a></p></div>";
Best Regards
-
This reply was modified 8 years, 7 months ago by
Sigmund.
Hey vadikcoma,
Try the following:
1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
2. Go to Settings > Media
3. Change the entry_with_sidebar image size (increase its width / height).
4. Regenerate the thumbnails by clicking the button at the bottom.
Best regards,
Yigit
Hi
Is there a way to remove the popup which appears when clicking on the gallery image and thumbnails?
I have tried
A) Unchecking lightbox on general styling
B) Selecting “No, don’t add a link to the image”
But the popup still appears, and it is especially irritating when viewed on mobile.
Can you please help?
Hi,
Try the following:
1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
2. Go to Settings > Media
3. Change the entry_with_sidebar image size (increase its width / height).
4. Regenerate the thumbnails by clicking the button at the bottom.
Best regards,
Yigit
Hi,
Please look for this code.
$image = “”;
$extraClass = “av-magazine-no-thumb”;
$excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( ‘avf_magazine_excerpt_length’ , 60) , apply_filters( ‘avf_magazine_excerpt_delimiter’ , ” “), “…”, true, ”);
The $excerpt should be outside the curly braces.
if($style == 'small')
{
if(empty($this->atts['thumbnails']))
{
$image = "";
$extraClass = "av-magazine-no-thumb";
}
$excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_magazine_excerpt_length' , 60) , apply_filters( 'avf_magazine_excerpt_delimiter' , " "), "…", true, '');
}
else
{
$excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_magazine_excerpt_length' , 60) , apply_filters( 'avf_magazine_excerpt_delimiter' , " "), "…", true, '');
}
Best regards,
Ismael
Hi there,
My recently auto-updated WordPress to 4.8.1 and Enfold 4.1.2 has caused some major display issues to all my websites that relates to the images.
Either:
1. All thumbnails or images in Portfolio section do not display at all.
2. Images loaded in Masonry kept bouncing around and does not load and stay properly.
3. Some LayerSlider totally not working suddenly.
Urgently need help as all websites are LIVE business websites.
Previously, nothing was wrong with any of the websites.
The problem is solved!
This code removes the 768 size …
function paulund_remove_default_image_sizes( $sizes) {
unset( $sizes[‘medium_large’]);
return $sizes;
}
add_filter(‘intermediate_image_sizes_advanced’,’paulund_remove_default_image_sizes’);
—— ! ! ! ——-
In Settings -> Media -> set to 0
in functions.php make correction ;) Except 36×36 thumbnails :D
in enfold/config-woocommerce/config.php make correction
… and voilà !
Hi,
Other posts have covered this topic but their solutions don’t seem to be working for me.
I’m trying to change the number of columns from four to two, and have tried resizing the thumbnails and regenerating them; this doesn’t seem to help. I’ve also tried
https://kriesi.at/support/topic/number-of-image-gallery-columns-in-a-woocommerce-single-product-page/
Earlier solutions suggested changes to the config.php file but I can’t seem to find a reference to the columns in that file.
many thanks for your help
Simon
-
This topic was modified 8 years, 7 months ago by
friendlier.
Hi Simon,
The thumbs are set to be cut at 80px and so they do not look good,
View post on imgur.com
You need to change that setting and regenerate thumbnails.
Here is some theory
Here is a plugin
If you need further assistance please let us know.
Best regards,
Victoria
I try to upload images like I always do and I see the blue bar like it’s uploading but the thumbnail has a blue ? icon. When clicked in the media library I see the dimensions but no image. I can even see a preview when I click the edit button, but otherwise I can’t find it anywhere.
Upon further research I notice the URL for the file is generating properly (uploads / year / month folder) but when I open my FTP client I see that nothing is actually there.
Please help!! I’ve spent countless hours trying to solve this and have had absolutely no luck. The closest threads I can find involve error messages and I do not get one.
Hi,
when i switch to enfold’s gallery (as well as woocommerce 3 gallery) all images even thumbnails load in full size
Did you remove the catalog or product thumbnails that are generated by the plugin? You can find those in the Woocommerce > Settings > Products > Display > Product images section. The theme is using those thumbnails for the product gallery.
Best regards,
Ismael
I’ve created an advanced custom field for a “second” thumbnail image.
I want to be able to insert this just after the current post headline.
I’ve tried to use ava_after_post_title but this doesn’t work.
Does anyone know the hook I can use to insert this image where I want it?
Hi,
Please use the following plugin instead.
// https://wordpress.org/plugins/simple-image-sizes/
If you really want to override it bin the child theme, use the add_image_size function and use the same thumbnail name.
// https://developer.wordpress.org/reference/functions/add_image_size/
Best regards,
Ismael