-
Search Results
-
Hi,
we use
[av_gallery ids='1455' style='big_thumb' crop_big_preview_thumbnail='avia-gallery-big-no-crop-thumb' thumb_size='portfolio']
if our image is not square the thubnail is cropped, and i can’t get rid of it.
Any way to archive seeing the complete picture as thumbnail (aligment center)and is there somewhere a list for all option in av_gallery shortcode?
thanks,
wespef.e. to dynamic_avia or to a new folder e.g. avia_video_thumbnails.
Why this could be a useful feature:
For GDPR reasons, even showing the video thumbnail via the video servers (youtube, vimeo, etc.) would not be compliant.
Legally correct would be the local delivery of the thumbnail via the own server. as required by the GDPR, all connection to third-party servers must be suppressed until active consent is given. Without a fallback image, however, only a black rectangle would be displayed, so it would be nice to automatically assign this locally stored thumbnail as background image to the avia-video div instead.PS. With Vimeo, finding the thumbnail is not as trivial as with Youtube videos. There the video ID does not correlate with the thumbnail ID. If it is easier for the later insertion of the image, you could still save the Vimeo thumbnails with the vimeo video ID (and not with the real thumbnail ID) – that’s how Borlabs Cookie does it. The Vimeo videos get there the ID , which has the video.
PPS: not all youtube videos do have the maxresdefault Thumbs – but the hqdefault will always be there.
You should probably only take the highest resolution thumbnail size that is always available.Hello, I have a real problem in my store and the catalog images.
I have detected that this happens since I updated the latest version of your Theme.
If I deactivate his theme and put the default one, it doesn’t happen.
from approximately September 1 all the images that we upload of product. they are displayed 1:1 and do not respect the original format.
Cutting off the head of the photos of our models.I’ve gone to Customize -> WooCommerce -> Product Images.
I modify any width variation of the main image or thumbnail and it does not make any changes.If I do the same in cropping the thumbnail, “No cropping” doesn’t make any changes either.
I have tried the same thing with the base WordPress theme, and it changes the dimensions perfectly.
What I can do? I need help, urgently
Hi Support,
When the website url is sent in a text message an image is displayed and should be the favicon. For some reason the image is displaying a random image used in the website design. Please see the attached JPG and let me know where to update this so the correct favicon image is displayed.

Thanks
ScottHi,
https://gyazo.com/4ec7b1de4a8d196e974e8d373b8abaf5I am using the default woocommerce product catalog page. For some reason the images are 450×450 px in 1 1:1 aspect ration instead of a 16:9 aspect ratio as i want it. Woocommerce moved the image settings into the customizer and states if the settings dont show up there one should contact the theme author. Any hints on how i get the images to the desired aspect ratio? Funny thing is it was working before but new images uploaded are always 450×450 now instead of 640×360.
Whats interesting: It was working before, then suddenly newly uploaded images had this 1:1 aspect ratio. I used regenerate thumbnails and now all have the 1:1 aspect ratio… Maybe this is because woocommerce moved this setting? I am not sure if it is an enfold or a whoocommerce problem.
Any help is highly appreciated. Thanks!
PatrickHi,
i found code in an a older version of an child themes functions.php.
Although i researched and cleared a lot by my own these snippets are unclear.Are they still necessary / in charge or can they be removed because they are not valid/deprecated?
add_filter('avf_form_use_wpmail', 'avia_change_php_mail', 10, 3); function avia_change_php_mail($active, $new_post, $form_params){ return true; }add_theme_support('avia_template_builder_custom_css');//entfernt den Kommentarblock und die Datumsangaben aus dem Combo Widget // class avia_combo_widget extends WP_Widget { function avia_combo_widget() { //Constructor $widget_ops = array('classname' => 'avia_combo_widget', 'description' => 'A widget that displays your popular posts, recent posts, recent comments and a tagcloud' ); $this->WP_Widget( 'avia_combo_widget', THEMENAME.' Combo Widget', $widget_ops ); } function widget($args, $instance) { // prints the widget extract($args, EXTR_SKIP); $posts = empty($instance['count']) ? 4 : $instance['count']; echo $before_widget; echo "<div class='tabcontainer border_tabs top_tab tab_initial_open tab_initial_open__1'>"; echo '<div class="tab first_tab active_tab widget_tab_popular"><span>'.__('Popular', 'avia_framework').'</span></div>'; echo "<div class='tab_content active_tab_content'>"; avia_get_post_list('cat=&orderby=comment_count&posts_per_page='.$posts); echo "</div>"; echo '<div class="tab widget_tab_recent"><span>'.__('Recent', 'avia_framework').'</span></div>'; echo "<div class='tab_content'>"; avia_get_post_list('showposts='. $posts .'&orderby=post_date&order=desc'); echo "</div>"; echo '<div class="tab last_tab widget_tab_tags"><span>'.__('Tags', 'avia_framework').'</span></div>'; echo "<div class='tab_content tagcloud'>"; wp_tag_cloud('smallest=12&largest=12&unit=px'); echo "</div>"; echo "</div>"; echo $after_widget; } function update($new_instance, $old_instance) { $instance = $old_instance; foreach($new_instance as $key=>$value) { $instance[$key] = strip_tags($new_instance[$key]); } return $instance; } function form($instance) { //widgetform in backend $instance = wp_parse_args( (array) $instance, array('count' => 4) ); if(!is_numeric($instance['count'])) $instance['count'] = 4; ?> <p> <label for="<?php echo $this->get_field_id('count'); ?>">Number of posts you want to display: <input class="widefat" id="<?php echo $this->get_field_id('count'); ?>" name="<?php echo $this->get_field_name('count'); ?>" type="text" value="<?php echo esc_attr($instance['count']); ?>" /></label></p> <?php } } function avia_get_post_list( $avia_new_query , $excerpt = false) { global $avia_config; $image_size = isset($avia_config['widget_image_size']) ? $avia_config['widget_image_size'] : 'widget'; $additional_loop = new WP_Query($avia_new_query); if($additional_loop->have_posts()) : echo '<ul class="news-wrap">'; while ($additional_loop->have_posts()) : $additional_loop->the_post(); $format = ""; if(get_post_type() != 'post') $format = get_post_type(); if(empty($format)) $format = get_post_format(); if(empty($format)) $format = 'standard'; echo '<li class="news-content post-format-'.$format.'">'; //check for preview images: $image = ""; if(!current_theme_supports('force-post-thumbnails-in-widget')) { $slides = avia_post_meta(get_the_ID(), 'slideshow'); if( $slides != "" && !empty( $slides[0]['slideshow_image'] ) ) { $image = avia_image_by_id($slides[0]['slideshow_image'], 'widget', 'image'); } } if(!$image && current_theme_supports( 'post-thumbnails' )) { $image = get_the_post_thumbnail( get_the_ID(), $image_size ); } $time_format = apply_filters( 'avia_widget_time', get_option('date_format')." - ".get_option('time_format'), 'avia_get_post_list' ); $nothumb = (!$image) ? 'no-news-thumb' : ''; echo "<a class='news-link' title='".get_the_title()."' href='".get_permalink()."'>"; echo "<span class='news-thumb $nothumb'>"; echo $image; echo "</span>"; echo "<strong class='news-headline'>".avia_backend_truncate(get_the_title(), 55," "); //echo "<span class='news-time'>".get_the_time($time_format)."</span>"; echo "</strong>"; echo "</a>"; if('display title and excerpt' == $excerpt) { echo "<div class='news-excerpt'>"; the_excerpt(); echo "</div>"; } echo '</li>'; endwhile; echo "</ul>"; wp_reset_postdata(); endif; }add_filter('avf_debugging_info', 'remove_debugging_info', $info); function remove_debugging_info($info) { $info = ''; return $info; }kind regards
evaHi everybody, it seems that – since the last Enfold theme-update – the woocommerce thumbnails are square.
https://www.jagador.de/shop/
The settings in customizer is on no change but the thumbs are cropped to square.
Is there any change in Enfold concerning the image sizes?
When I switch to storefront, images are displayed correct.Any idea how to fix this?
There are massive issues with your theme – probably update related.
Here what`s going on – explained on one single example – but there are more:
In page XY there should be a CSS class: <em>headerinoverlay</em>
The class is <strong>still in the database</strong>, in the table <strong>postmeta</strong>[av_image src='https://......./wp-content/uploads/portrait.jpg' attachment='30256' attachment_size='full' copyright='' caption='yes' styling='' align='center' font_size='14' overlay_opacity='0.2' overlay_color='#000000' overlay_text_color='#ffffff' animation='fade-in' hover='av-hover-grow' appearance='' link='lightbox' target='' title_attr='' alt_attr='' lazy_loading='enabled' id='' custom_class='' template_class='' av_element_hidden_in_editor='0' av_uid='av-6j99wqx' sc_version='1.0' admin_preview_bg=''] <span class="headerinoverlay">TEXT [/av_image]The class <strong>is NOT in the actual HTML</strong> sourcecode.
<div class='avia-image-container av-6j99wqx-4360db518504a459e880005aec5fa2b1 av-styling- av-hover-grow avia_animated_image av-animated-when-visible-95 fade-in avia-align-center avia-builder-el-3 avia-builder-el-no-sibling noHover av-overlay-on-hover' itemprop="image" itemscope="itemscope" itemtype="https://schema.org/ImageObject" ><div class="avia-image-container-inner"><div class="avia-image-overlay-wrap"><a href="https://www………./wp-content/uploads/portrait.jpg" data-srcset="https://www………./wp-content/uploads/portrait.jpg 800w, https://www……./wp-content/uploads/portrait-80x73.jpg 80w, https://www......../wp-content/uploads/portrait-768x697.jpg 768w, https://www......../wp-content/uploads/portrait-705x640.jpg 705w" data-sizes="(max-width: 800px) 100vw, 800px" class='avia_image' ><div class="av-image-caption-overlay"><div class="av-caption-image-overlay-bg"></div><div class="av-image-caption-overlay-position"><div class="av-image-caption-overlay-center"><p>TEXT</p> </div></div></div><img loading="lazy" class='wp-image-30256 avia-img-lazy-loading-30256 avia_image ' src="https://www......../wp-content/uploads/portrait.jpg" alt='Portrait' title='Portraitfoto' height="726" width="800" itemprop="thumbnailUrl" srcset="https://www......../wp-content/uploads/portrait.jpg 800w, https://www......../wp-content/uploads/portrait-80x73.jpg 80w, https://www......../wp-content/uploads/portrait-768x697.jpg 768w, https://www......../wp-content/uploads/portrait-705x640.jpg 705w" sizes="(max-width: 800px) 100vw, 800px" /></a></div></div></div></div><div class='flex_column av-6149og9-1350048edcab4a29bac43fd434ba5c8f av_two_third avia-builder-el-4 el_after_av_one_third avia-builder-el-last flex_column_div av-zero-column-padding ' ><section class='av_textblock_section av-kr20wrz8-63e74a5f33bc7afd1e2b9d372feba404' itemscope="itemscope" itemtype="https://schema.org/BlogPosting" itemprop="blogPost" >The class<strong> is NOT in the ALB</strong>
[av_image src='https://......./wp-content/uploads/portrait.jpg' attachment='30256' attachment_size='full' copyright='' caption='yes' styling='' align='center' font_size='' overlay_opacity='0.2' overlay_color='#000000' overlay_text_color='#ffffff' animation='fade-in' hover='av-hover-grow' appearance='on-hover' link='lightbox' target='' title_attr='' alt_attr='' lazy_loading='enabled' id='' custom_class='' template_class='' av_element_hidden_in_editor='0' av_uid='av-6j99wqx' sc_version='1.0' admin_preview_bg=''] TEXT[/av_image]So there is no way to edit it or remove it cause i cant find.
When you compare the code from the database with the code from the ALB you will realize that there are also other things wich are different.This (gone CSS) happened to a lot of CSS and this is a very serious problem.
Please fix it or tell me how i get my CSS back from the DB into the ALB!Eva


