-
AuthorSearch Results
-
March 12, 2020 at 1:37 pm #1192586
In reply to: Sidebar Thumbnails Size
just for info : besides the image size in the widget areas ( if they are latest news or latest portfolio) – it would take alswas that thumbnail sized image as source – but
there is a filter : avf_newsbox_image_size which can manage that to have another source for that widget thumbnail.
so maybe you like to take instead the square images (180px x 180px) you only had to know what newsbox or portfoliobox you like to select:function my_avf_newsbox_image_size( $image_size, array $args, array $instance ){ if( $args['widget_id'] == ( 'portfoliobox-3' || 'newsbox-2' || 'newsbox-4' ) ){ $image_size = 'square'; } return $image_size; } add_filter( 'avf_newsbox_image_size', 'my_avf_newsbox_image_size', 10, 3 );March 11, 2020 at 7:03 pm #1192404In reply to: Remove show all results from search
so it is not so easy but because on functions-enfold.php the ajax search function is a “pluggable function” you can have here a child-theme solution. Otherwise you had to have a complete functions-enfold.php in your child.
Every function surrounded by:if(!function_exists('…')){ … }can be substituted by child-theme function with same name! – because child-theme functions are loaded first – when it comes to the function with the same name in parent theme it does not load the parent function ( because of the if not exists clause)
i have edited that function (on base of enfold 4.7.3) and you can copy & paste that part to your child-theme functions.php
add_action( 'wp_ajax_avia_ajax_search', 'avia_ajax_search' ); add_action( 'wp_ajax_nopriv_avia_ajax_search', 'avia_ajax_search' ); function avia_ajax_search() { global $avia_config; unset($_REQUEST['action']); if(empty($_REQUEST['s'])) $_REQUEST['s'] = array_shift(array_values($_REQUEST)); if(empty($_REQUEST['s'])) die(); $defaults = array('numberposts' => 5, 'post_type' => 'any', 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false, 'results_hide_fields' => ''); $_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']); $search_parameters = array_merge($defaults, $_REQUEST); if ( $search_parameters['results_hide_fields'] !== '' ) { $search_parameters['results_hide_fields'] = explode(',', $_REQUEST['results_hide_fields']); } else { $search_parameters['results_hide_fields'] = array(); } $search_query = apply_filters('avf_ajax_search_query', http_build_query($search_parameters)); $query_function = apply_filters('avf_ajax_search_function', 'get_posts', $search_query, $search_parameters, $defaults); $posts = (($query_function == 'get_posts') || !function_exists($query_function)) ? get_posts($search_query) : $query_function($search_query, $search_parameters, $defaults); $search_messages = array( 'no_criteria_matched' => __("Sorry, no posts matched your criteria", 'avia_framework'), 'another_search_term' => __("Please try another search term", 'avia_framework'), 'time_format' => get_option('date_format'), 'all_results_query' => http_build_query($_REQUEST), 'all_results_link' => home_url('?' . http_build_query($_REQUEST)), 'view_all_results' => __('View all results','avia_framework') ); $search_messages = apply_filters('avf_ajax_search_messages', $search_messages, $search_query); if(empty($posts)) { $output = "<span class='av_ajax_search_entry ajax_not_found'>"; $output .= "<span class='av_ajax_search_image ".av_icon_string('info')."'>"; $output .= "</span>"; $output .= "<span class='av_ajax_search_content'>"; $output .= "<span class='av_ajax_search_title'>"; $output .= $search_messages['no_criteria_matched']; $output .= "</span>"; $output .= "<span class='ajax_search_excerpt'>"; $output .= $search_messages['another_search_term']; $output .= "</span>"; $output .= "</span>"; $output .= "</span>"; echo $output; die(); } //if we got posts resort them by post type $output = ""; $sorted = array(); $post_type_obj = array(); foreach($posts as $post) { $sorted[$post->post_type][] = $post; if(empty($post_type_obj[$post->post_type])) { $post_type_obj[$post->post_type] = get_post_type_object($post->post_type); } } //now we got everything we need to preapre the output foreach($sorted as $key => $post_type) { // check if post titles are in the hidden fields list if ( ! in_array('post_titles', $search_parameters['results_hide_fields'] ) ) { if(isset($post_type_obj[$key]->labels->name)) { $label = apply_filters('avf_ajax_search_label_names', $post_type_obj[$key]->labels->name); $output .= "<h4>".$label."</h4>"; } else { $output .= "<hr />"; } } foreach($post_type as $post) { $image = ""; $extra_class = ""; // check if image is in the hidden fields list if (!in_array('image', $search_parameters['results_hide_fields'])) { $image = get_the_post_thumbnail($post->ID, 'thumbnail'); $extra_class = $image ? "with_image" : ""; $post_type = $image ? "" : ( get_post_format($post->ID) != "" ? get_post_format($post->ID) : "standard" ); $iconfont = $image ? "" : av_icon_string($post_type); } $excerpt = ""; // two new lines here $the_id = $post->ID; $commentCount = get_comments_number($the_id); // check if post meta fields are in the hidden fields list if ( ! in_array('meta', $search_parameters['results_hide_fields'] ) ) { if(!empty($post->post_excerpt)) { $excerpt = apply_filters( 'avf_ajax_search_excerpt', avia_backend_truncate($post->post_excerpt,70," ","...", true, '', true) ); $excerpt .= "<br class='linebreak'/><span>".get_the_time( $search_messages['time_format'], $post->ID )."</span>"; if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio') { $link_add = $commentCount === "0" ? "#respond" : "#comments"; $text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' ); $excerpt .= "<span class='sep'> / </span><span>{$commentCount} {$text_add}</span>"; } } else { $excerpt = apply_filters( 'avf_ajax_search_no_excerpt', get_the_time( $search_messages['time_format'], $post->ID ), $post ); if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio') { $link_add = $commentCount === "0" ? "#respond" : "#comments"; $text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' ); $excerpt .= "<span class='sep'> / </span><span>{$commentCount} {$text_add}</span>"; } } } $link = apply_filters('av_custom_url', get_permalink($post->ID), $post); $output .= "<a class ='av_ajax_search_entry {$extra_class}' href='".$link."'>"; if ($image !== "" || $iconfont) { $output .= "<span class='av_ajax_search_image' {$iconfont}>"; $output .= $image; $output .= "</span>"; } $output .= "<span class='av_ajax_search_content'>"; $output .= " <span class='av_ajax_search_title'>"; $output .= get_the_title($post->ID); $output .= " </span>"; if ($excerpt !== '') { $output .= " <span class='ajax_search_excerpt'>"; $output .= $excerpt; $output .= " </span>"; } $output .= "</span>"; $output .= "</a>"; } } $output .= "<a class='av_ajax_search_entry av_ajax_search_entry_view_all' href='".$search_messages['all_results_link']."'>".$search_messages['view_all_results']."</a>"; echo $output; die(); }because there was a css rule in enfold that sets the breaks in ajax search to display:none
you had to put this in additon to quick css#top #searchform br.linebreak { display: block; }you can test it here on my playground – put in search : buttons
https://webers-testseite.de/March 11, 2020 at 5:18 pm #1192369In reply to: Custom Product Image Thumbnail sizes in Enfold Shop
I’m sorry Ismael, but this doesn’t do nothing.
As per your instructions, I added the snippet to the functions.php file of my child theme, but since I’m working with a multi-site install, this may not be where the snippet needs to go. Is it?
I weeded through your forum hoping to find an answer there, but even though this seems a rather popular topic, the seemingly straightforward change of the product gallery thumbnail size in previous versions of WooCommerce seems long gone, which proves that the evolution of a theme or plugin isn’t always a good thing.
I managed to find something in the WooCommerce Docs that seems it could do the trick:
add_theme_support( ‘woocommerce’, array(
‘thumbnail_image_width’ => 200,
‘gallery_thumbnail_image_width’ => 100,
‘single_image_width’ => 500,
) );
I tried adding that, regenerated the thumbnails, but it didn’t work either.I can’t help feeling a bit frustrated over not being able to solve something this simple. I added a picture specifically outlining the issue – so where am I going wrong here. Does this really need to be so complicated and long drawn-out Ismael?
Many thanks for taking yet another look.
March 11, 2020 at 3:34 pm #1192320In reply to: gallery layout on portfolio page
can you please modify my entire code from my previous post as I can not get it working…
Also how can I get those images (thumbnails) displayed in 1:1 ? and not stretched over the entire screen when window is maximized ?Best regards
Amel-
This reply was modified 6 years ago by
AmelC.
March 11, 2020 at 12:51 pm #1192240In reply to: Align text and gallery
Hi,
You can try using the code like this:
/* no border around gallery big preview, correct left and bottom padding */ #top div .avia-gallery .avia-gallery-big { border-style: none; padding-left: 0px; padding-bottom: 0px; } /* no border around gallery thumbnails, padding 0px to reduce white space */ /* correct left padding of gallery thumbnails */ #top div .avia-gallery img, #top #wrap_all .avia-gallery .avia-gallery-thumb a img { border-style: none; padding-top: 0px; padding-left: 0px; }Best regards,
VictoriaMarch 11, 2020 at 12:39 pm #1192234Hi Sachasilvestri,
Did you get it working for you?Yes, I can see now.
Here is how to remove the title:
https://kriesi.at/support/topic/hide-titles-and-descriptions-when-you-hover-on-images-or-thumbnails-of-galleries/#post-981078Best regards,
Victoria-
This reply was modified 6 years ago by
Victoria.
March 11, 2020 at 12:01 pm #1192211In reply to: Product Galley images quality is very low
Hi bakbek,
Please go to WooCommerce > Settings > Products > Product Image Sizes and change image sizes and then regenerate thumbnails using this plugin – http://wordpress.org/plugins/regenerate-thumbnails/
https://kriesi.at/support/topic/blurred-product-images/
Best regards,
VictoriaMarch 11, 2020 at 7:34 am #1192167Topic: Look and feel of thumbnails in all product category pages
in forum Enfoldvaishalifulsundar
ParticipantHi,
please check the look and feel of the product category page with all the thumbnails. I am adding proper hi-res images .but still the images are looking blur and/or cropped.Please check the private content for the same.
Thanks
SwathiMarch 11, 2020 at 12:50 am #1192077In reply to: Align text and gallery
Hi Victoria,
Thank you for your prompt reply.
Your code works. Now the text is aligned to the gallery.
I combined your code with my code. Now, it looks like this:
/* no border around gallery big preview, correct left and bottom padding */ #top div .avia-gallery .avia-gallery-big { border-style: none; padding-left: 0px; padding-bottom: 0px; } /* no border around gallery thumbnails, padding 0px to reduce white space */ #top div .avia-gallery img { border-style: none; padding-top: 0px; } /* correct left padding of gallery thumbnails */ #top #wrap_all .avia-gallery .avia-gallery-thumb a img{ padding-left: 0px; }Is there a way to simplify this code?
Best regards,
zizibe1
March 10, 2020 at 1:20 pm #1191810In reply to: gallery layout on portfolio page
Hello,
thank you for the reply. It`s not working just tried to modify the code, and this is how the code looks like now, maybe I did something wrong, NOTE there is also other CSS that are modified and in use so your suggestion is located at the bottom of the code:
The code is added in “General Styling” – “Quick CSS”
img.mfp-img { padding: 0 !important; margin: 40px auto !important; border: white 2px solid !important; } .mfp-bottom-bar { margin-top: 10px !important; } div.avia-popup .mfp-close { top: -35px !important; } html { background-color: #FFFFFF !important } } .grid-entry { padding: 10px; }What I want here is 2 things:
1. make spacing between images yes just as you understood
2. but also make those images 1:1 square thumbnails and add some fixed size so images do not spread over the entire window when user maximizes the browser window.Best regards
Amel-
This reply was modified 6 years ago by
AmelC.
March 10, 2020 at 9:52 am #1191749In reply to: Product Galley images quality is very low
Hey DROR,
Thank you for the inquiry.
You should be able to use the woocommerce_gallery_thumbnail_size filter to adjust the size of the gallery thumbnails.
function avf_custom_woocommerce_gallery_thumbnail_size() { return 'full'; } add_filter( 'woocommerce_gallery_thumbnail_size', 'avf_custom_woocommerce_gallery_thumbnail_size' );Add it in the functions.php file.
Best regards,
IsmaelMarch 10, 2020 at 5:53 am #1191698In reply to: Analytics Events tracking for every masonry element
Hey Manuel,
Thank you for the inquiry.
The following is the markup of an item in a Masonry element. You might be able to use the value of the id attribute (av-masonry-1-item-153) or one of the class names to target it.
<a href="https://manuelkoehler.de/wp-content/uploads/2020/01/hochzeitsfotograf-coburg-steffi-und-marc-brp02080-1030x687.jpg" id="av-masonry-1-item-153" data-av-masonry-item="153" class="av-masonry-entry isotope-item post-153 attachment type-attachment status-inherit hentry av-masonry-item-with-image lightbox-added av-masonry-item-loaded" title="Hochzeitsfotograf Coburg Steffi und Marc BRP02080" itemprop="thumbnailUrl" style="position: absolute; left: 24.8417%; top: 0px;"> <div class="av-inner-masonry-sizer"></div> <figure class="av-inner-masonry main_color"> <div class="av-masonry-outerimage-container"> <div class="av-masonry-image-container"><img src="https://manuelkoehler.de/wp-content/uploads/2020/01/hochzeitsfotograf-coburg-steffi-und-marc-brp02080-705x470.jpg" title="Hochzeitsfotograf Coburg Steffi und Marc BRP02080" alt="Hochzeitsfotograf für Coburg in der Rosenau" data-lazy-src="https://manuelkoehler.de/wp-content/uploads/2020/01/hochzeitsfotograf-coburg-steffi-und-marc-brp02080-705x470.jpg" class="lazyloaded" data-was-processed="true" data-jpibfi-indexer="4"> <noscript> <img src="https://manuelkoehler.de/wp-content/uploads/2020/01/hochzeitsfotograf-coburg-steffi-und-marc-brp02080-705x470.jpg" title="Hochzeitsfotograf Coburg Steffi und Marc BRP02080" alt="Hochzeitsfotograf für Coburg in der Rosenau" /> </noscript></div> </div></figure> </a>The image is inside the page hochzeitsbilder-in-der-rosenau-roedental post.
Best regards,
IsmaelMarch 10, 2020 at 4:15 am #1191687Topic: Align text and gallery
in forum Enfoldzizibe1
ParticipantHi,
I hid the border around the gallery and the thumbnails using these two codes which I added to Enfold Child > General Styling > Quick CSS:
/* no border around gallery big preview */ #top div .avia-gallery .avia-gallery-big { border-style: none; } /* no border around gallery thumbnails, padding 0px to reduce white space */ #top div .avia-gallery img { border-style: none; padding-top: 0px; }Below the gallery, I placed a text block. Unfortunately, the text is not aligned with the gallery.
How can I fix this?
Please find a screenshot in the private content area.
Best regards,
zizibe1
March 10, 2020 at 3:14 am #1191683In reply to: Custom Product Image Thumbnail sizes in Enfold Shop
Hi,
Sorry for the confusion. You can add the code in the functions.php file of the parent theme, or the child theme if you have one already. The snippet should set the thumbnail used in the gallery items to “full”, which is the original size of the images with their actual aspect ratio.
Best regards,
IsmaelMarch 10, 2020 at 3:03 am #1191680In reply to: Magazine tabs not working anymore
Hi Ismael,
Thank you so much for your help!
My modifications in magazine.php:
FIXED:
old file arround line 587: show intro text and add ‘a href’ read more link;
…{$markupContent}>{$excerpt}
ID).”‘ class=’more-link’>”.__(‘Read more’,’avia_framework’).”<span class=’more-link-arrow’>→</span>
</div>”;$output…Don’t know how I can get the style changes back:
– outline category links to the left;
– change thumbnail size;
– change magazine title size and style;If I put my old magazine.php back on for a moment, the styles do change. So I guess that there needs to be a class change or something in this file?!
Here two example images:
good styles: https://ibb.co/TmydnYx
https://ibb.co/8BNDDtbNotice that for now, I have 2 magazine files in the ‘shortcode’ folder. The old one, and my new magazine.php.
Best regard,
Lambert-
This reply was modified 6 years ago by
infoNewMultimedia.
March 9, 2020 at 4:47 pm #1191570In reply to: Blury images
Enfold on Default takes for the lightbox-images not the full but the large images. These image formats are defined in functions.php on lines 174ff
( i just removed the comments) just for info:$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); $avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); $avia_config['imgSize']['featured'] = array('width'=>1500, 'height'=>430 ); $avia_config['imgSize']['featured_large'] = array('width'=>1500, 'height'=>630 ); $avia_config['imgSize']['extra_large'] = array('width'=>1500, 'height'=>1500 , 'crop' => false); $avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); $avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); $avia_config['imgSize']['gallery'] = array('width'=>845, 'height'=>684 ); $avia_config['imgSize']['magazine'] = array('width'=>710, 'height'=>375 ); $avia_config['imgSize']['masonry'] = array('width'=>705, 'height'=>705 , 'crop' => false); $avia_config['imgSize']['entry_with_sidebar'] = array('width'=>845, 'height'=>321); $avia_config['imgSize']['entry_without_sidebar'] = array('width'=>1210, 'height'=>423 ); $avia_config['imgSize'] = apply_filters('avf_modify_thumb_size', $avia_config['imgSize']);these image-sizes are generated from Enfold on uploading it to media-library.
WordPress itself generates 3 additional image-sizes:Thumbnail (on default : 150px square or 80px)
Medium (on default : maximum 300px width and height)
Large (on default : maximum 1024px width and height)
Full (full/original image size you uploaded)
But: Enfold has some filter to change the format of this image for the different uses.
One is: avf_avia_builder_helper_lightbox_size
Another one is: avf_avia_builder_masonry_lightbox_img_size
Or: avf_avia_builder_gallery_image_linkHow to use the filter : over child-theme functions.php:
function change_lightbox_size() { return "full"; } add_filter('avf_avia_builder_helper_lightbox_size','change_lightbox_size', 10);function avia_change_masonry_thumbnail_link($size){ return "full"; } add_filter('avf_avia_builder_masonry_lightbox_img_size', 'avia_change_masonry_thumbnail_link', 10, 1);function avia_change_gallery_thumbnail_link($link, $attachment, $atts, $meta){ $link = wp_get_attachment_image_src($attachment->ID, "full"); return $link; } add_filter('avf_avia_builder_gallery_image_link', 'avia_change_gallery_thumbnail_link', 10, 4);do not forget to empty all caching plugins and if you merge js and css files in Enfold to regenerate these files.
March 9, 2020 at 3:41 pm #1191551Topic: Change blog article widget
in forum EnfoldJarmo
ParticipantHi,
I want to show the category name in the blog article widget in the builder.
Now it shows it like this:Blogtitle
Date
ExcerptI want it to show it like this:
Category | Date
Blogtitle
ExcerptAlso I want the whole <article> to be the link instead of only the thumbnail and blogtitle.
March 9, 2020 at 10:11 am #1191409In reply to: Custom Product Image Thumbnail sizes in Enfold Shop
Hi,
Thank you for the clarification.
You should be able to use the “woocommerce_gallery_thumbnail_size” filter to change the image size used for the gallery thumbnails.
function avf_custom_woocommerce_gallery_thumbnail_size() { return 'full'; } add_filter( 'woocommerce_gallery_thumbnail_size', 'avf_custom_woocommerce_gallery_thumbnail_size' );Best regards,
IsmaelMarch 8, 2020 at 1:19 pm #1191251In reply to: Gallery layout edit
Hi,
Thank you for the feedback, for the horizontal gallery the activate starting thumbnail is all the way to the left, and the gallery doesn’t start moving until the fifth one is activate, or the fifth click.
So I think two settings that will help is “Active Image Style” = “enlarge image” this will visually show which image is the active one even if the gallery is not side scrolling, and the “Initial Active Image” = “5” this will set number 5 as the active one so the next click scrolls the gallery.

To add some space to the top of the comments container, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.single-post #main div.comment-entry.post-entry { padding-top: 50px !important; }After applying the css, Please clear your browser cache and check.
Best regards,
MikeMarch 7, 2020 at 4:03 pm #1191123In reply to: top image in woocommerce category
Hey Yossi,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.archive #main .template-shop.content .page-thumb img { width: 100% !important; }On some of your categories the “page-thumb” is not present, do all of your categories have a thumbnail image in the product categories option? If so perhaps there is a plugin conflict, have you tried disabling your plugins and checked?
Best regards,
MikeMarch 6, 2020 at 9:15 am #1190790In reply to: Custom Product Image Thumbnail sizes in Enfold Shop
Hi,
Thank you for the update.
The thumbnails are displaying fully in the shop page now. Did you manage to adjust the aspect ratio in the customizer? If you need more help, please post the login details in the private field.
Best regards,
IsmaelMarch 5, 2020 at 4:51 pm #1190495In reply to: Custom Product Image Thumbnail sizes in Enfold Shop
Thanks Ismael, but your first solution doesn’t seem to have any effect on the product gallery thumbnails and the second, I’m not sure that I’m able to make sense of it? Could you please be a bit more specific on how I would need to go about changing the thumbnail size using the single_product_archive_thumbnail_size filter?
Many thanks.
March 4, 2020 at 1:45 am #1189866In reply to: EasySlider-FullWidth
Hi,
Thank you for the update.
You have to select No Scaling in the Styling > Slideshow Image and Video Size settings to make the slideshow use the original version of the image instead of its thumbnails. This might create white spaces on both sides of the image inside the slider.
Best regards,
IsmaelMarch 4, 2020 at 1:33 am #1189863In reply to: Few help needed
Hi,
Sorry for the late response.
1.) Are you referring to the base shop page or the actual product view? A link to the site will help. For the meantime, you can use this css code to adjust the style of the product price.
top .price, #top .price span, #top del, #top ins { display: inline; text-decoration: none; font-size: 20px; line-height: 24px; font-weight: 600; text-align: center; }2.) This is possible, but you have to modify or override the plugin templates as described in the documentation.
// https://docs.woocommerce.com/document/template-structure/
3.) The height of the item usually depends on the size of the image, but we can use css to adjust it. You can also adjust the thumbnail size and aspect ratio in the Appearance > Customize > Woocommerce > Product Images panel.
4.) Yes, that’s possible. You can use this css code to adjust the container of the featured image.
.single-product-main-image { width: 50%; float: left; margin-right: 50px; overflow: hidden; padding-bottom: 50px; }We always advice users to post their inquiries on separate threads or tickets instead of posting multiple ones in a single thread like this. The response time is usually faster that way and prevents confusion in our part and yours.
Best regards,
IsmaelMarch 2, 2020 at 5:24 pm #1189482In reply to: stars rating in product grid
Hi cohetete,
Please remove the code I gave, then replace it with:
#top .thumbnail_container .rating_container { display: none !important; } #top .inner_product_header .star-rating { display: block; float: none; margin-left: auto; margin-right: auto; }and this code at the bottom of your child theme’s functions.php:
If you aren’t using a child theme yet, you can download and find the instructions here: https://kriesi.at/documentation/enfold/child-theme/remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 15 );Best regards,
NikkoMarch 2, 2020 at 1:20 pm #1189418Topic: Sidebar Thumbnails Size
in forum Enfoldradoicosminstefan
ParticipantHello,
I am having some problems with the size of the sidebar thumbnails. I tried to edit their size in theme options as well in CSS but no results. They remain 80×80 regardless of what I do. Can you help?March 2, 2020 at 12:08 pm #1189398Hi,
Sorry for the delay. The parent container of the main image should automatically resize when you hover the thumbnails, but it’s not happening in your installation. Please upgrade the theme from v4.6.3.1 to the latest version (v4.7.3). Toggle the Performance > File Compression settings after the upgrade.
Best regards,
IsmaelMarch 2, 2020 at 10:07 am #1189377In reply to: Custom Product Image Thumbnail sizes in Enfold Shop
Hi,
Thank you for the update.
You can adjust the thumbnail size in the Appearance > Customize > Woocommerce > Product Images panel. Set the Thumbnail cropping to Uncropped if you want to see the actual aspect ratio of the featured images.
You can also use the single_product_archive_thumbnail_size filter to influence or change the thumbnail size used in the woocommerce_get_product_thumbnail function.
Best regards,
IsmaelMarch 2, 2020 at 4:37 am #1189311In reply to: stars rating in product grid
Hi cohetete,
Can you try to add this CSS code in Quick CSS, located in Enfold > General Styling:
#top .thumbnail_container .rating_container { position: static; margin-left: 0; opacity: 1; }Best regards,
NikkoMarch 1, 2020 at 4:10 pm #1189223Topic: Blog Posts: choose the image size manually
in forum Enfoldsthubertus
ParticipantWhen showing a blog and choosing in the tab Styling “Choose the image size manually (select thumbnail size)” a further pull down menu opens where some image sizes can be chosen.
However, this does not show any effect. E,g, if in the Tab Content there is chosen Single Author,big preview pic, its big size regardless what you chose.Can the Blog preview picture size be changed?
What is this setting doing? -
This reply was modified 6 years ago by
-
AuthorSearch Results
-
Search Results
-
Hi,
please check the look and feel of the product category page with all the thumbnails. I am adding proper hi-res images .but still the images are looking blur and/or cropped.Please check the private content for the same.
Thanks
SwathiTopic: Align text and gallery
Hi,
I hid the border around the gallery and the thumbnails using these two codes which I added to Enfold Child > General Styling > Quick CSS:
/* no border around gallery big preview */ #top div .avia-gallery .avia-gallery-big { border-style: none; } /* no border around gallery thumbnails, padding 0px to reduce white space */ #top div .avia-gallery img { border-style: none; padding-top: 0px; }Below the gallery, I placed a text block. Unfortunately, the text is not aligned with the gallery.
How can I fix this?
Please find a screenshot in the private content area.
Best regards,
zizibe1
Topic: Change blog article widget
Hi,
I want to show the category name in the blog article widget in the builder.
Now it shows it like this:Blogtitle
Date
ExcerptI want it to show it like this:
Category | Date
Blogtitle
ExcerptAlso I want the whole <article> to be the link instead of only the thumbnail and blogtitle.
Topic: Sidebar Thumbnails Size
Hello,
I am having some problems with the size of the sidebar thumbnails. I tried to edit their size in theme options as well in CSS but no results. They remain 80×80 regardless of what I do. Can you help?When showing a blog and choosing in the tab Styling “Choose the image size manually (select thumbnail size)” a further pull down menu opens where some image sizes can be chosen.
However, this does not show any effect. E,g, if in the Tab Content there is chosen Single Author,big preview pic, its big size regardless what you chose.Can the Blog preview picture size be changed?
What is this setting doing?
