-
Search Results
-
My problem is that the full width easy slider is not seen as accessible by our Accessibility vendor, as it presents as a list item.
https://www.integralrecoveries.com/leadership-copy/
Per the team:
Lists: Remove List HTML
Content that does not function as a list should not be coded as such.
The header thumbnail image is coded as being a part of a list when it should not be.Remediation Recommendation
Ensure this content is not coded as a list. Generally, this will mean removing <ol>, <ul>, <dl>, <dt>, <dd>, or <li> elements that are holding this content.
Here is a snippet of the code displaying the Full width easy slider:
Here is the code snippet I'm referring to '''<li class="avia-slideshow-slide av-juo9jzkl-8700c68c0f38de355eb6ad66836a0d85__0 av-single-slide slide-1 slide-odd next-active-slide active-slide" style="visibility: visible; opacity: 1; transition: none; transform: translateZ(0px);"><div data-rel="slideshow-1" class="avia-slide-wrap "><img decoding="async" fetchpriority="high" class="wp-image-621 avia-img-lazy-loading-not-621" src="https://www.integralrecoveries.com/wp-content/uploads/2019/06/Header_About2000x300.jpg" width="2000" height="300" title="Header_About2000x300" alt="" itemprop="thumbnailUrl" srcset="https://www.integralrecoveries.com/wp-content/uploads/2019/06/Header_About2000x300.jpg 2000w, https://www.integralrecoveries.com/wp-content/uploads/2019/06/Header_About2000x300-300x45.jpg 300w, https://www.integralrecoveries.com/wp-content/uploads/2019/06/Header_About2000x300-768x115.jpg 768w, https://www.integralrecoveries.com/wp-content/uploads/2019/06/Header_About2000x300-1030x155.jpg 1030w, https://www.integralrecoveries.com/wp-content/uploads/2019/06/Header_About2000x300-1500x225.jpg 1500w, https://www.integralrecoveries.com/wp-content/uploads/2019/06/Header_About2000x300-705x106.jpg 705w, https://www.integralrecoveries.com/wp-content/uploads/2019/06/Header_About2000x300-450x68.jpg 450w" sizes="(max-width: 2000px) 100vw, 2000px" style="left: 0px;"></div></li>'''
I’ve tried several options:
The image is set as 2000px x 300px btw.
1) Displaying as an image (no scaling, original width & height) – why doesn’t this work, it would solve many problems.
2) Color section – I’ve tried all options under Section Height including – Minimum Custom height in % based on browser windows width (responsive). However, it is not responsive (using 15% custom height for example). When you minimize for phone, it just blows up the left portion of the image height and does not adjust horizontally.
3) full width easy slider – This is what I’ve been using on all pages, which is responsive and is being rejected by the accessibility team as it uses a list element to display.
I’ve setup the following test page to show the differences of the three approaches with text headers
https://www.integralrecoveries.com/leadership-copy/
Inspect the page and display as an iphone 14 Max and you will see what happens. See attachment below
How can I fix this? I’m just trying to display a page header that is not coded as a list.
Thank you very much in advance!
Good morning,
You helped me fix this last time. I have now uploaded the child’s theme, and your settings have disappeared. I entered the code in the custom code field, and, as before, it did not work. AND THERE IS ANOTHER BIG ISSUE WITH THE NEW INSTALL. On the phone the products are majorly out of wack! Type is all over the place. Can you help with this then check on a phone to see if it appears right?? THANK YOU IN ADVANCE!! I uploaded the old Enfold theme settings with the new install but maybe because you changed it at the Php level it did not transfer.
I HAVE COPIED AND PASTED WHAT YOU DID THE LAST TIME. HERE IT IS. YOU ADDED IT TO MY PHP FUNCTION, WHICH I DO NOT KNOW HOW TO DO.
Hi,Thank you for your patience, on the page /fine-art-limited-editions/ I see the images are cropped to 450px square:
Enfold_Support_3642.jpegand your original images are in a 4:3 layout:
Enfold_Support_3644.jpegI couldn’t find the snippet that Ismael provided above anywhere, so I added it to th end of youe functions.php and now the images look like the original layout:
Enfold_Support_3646.jpegplease clear your browser cache and check.
I see you are not using a child theme and so this customization will be lost when you update next, I recommend the WPcode plugin this plugin supports PHP code snippets, JavaScript code snippets, & CSS code snippets so your customizations won’t be lost.Best regards,
Mike
HERE IS THE SNIPPET THAT THE THREAD SAID YOU ADDED.
add_filter( ‘avf_wc_before_shop_loop_item_title_img_size’, ‘avf_wc_before_shop_loop_item_title_img_size_mod’, 10, 1 );
function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) {
return ‘woocommerce_thumbnail’;Hello Enfold Support Team,
I am trying to change the default cropped size of my featured images on single blog posts to a proper 16:9 aspect ratio, so that my 1280x720px images are displayed in full without any cropping.
I have tried two different PHP-based methods based on my research, but neither has worked on my local server environment (so caching should not be the issue).
Method 1: Modifying Existing Sizes
First, I tried to modify the existing theme sizes using the avf_modify_thumb_size filter. This was the code I used in my child theme’s functions.php (respectively in a Code Snippet Plugin):
function enfold_definitive_image_ratio_fix( $size_array ) { $size_array['entry_without_sidebar'] = array('width' => 1210, 'height' => 681); $size_array['entry_with_sidebar'] = array('width' => 845, 'height' => 475); return $size_array; } add_filter( 'avf_modify_thumb_size', 'enfold_definitive_image_ratio_fix', 10, 1 );
When this code is active, the “Regenerate Thumbnails” page still shows the old default dimensions (e.g., 1210×423), so the filter does not seem to be applying correctly.
Method 2: Registering a New Size and Forcing its Use
As an alternative, I also tried registering a brand new 16:9 image size (custom-16-9-hero) and then used the avf_post_featured_image_size filter to force the theme to use it. Here is the code for that attempt:
function enfold_add_custom_image_sizes() { add_image_size( 'custom-16-9-hero', 1280, 720, true ); } add_action( 'after_setup_theme', 'enfold_add_custom_image_sizes' ); function enfold_use_custom_featured_image_size( $size ) { if ( is_singular('post') ) { return 'custom-16-9-hero'; } return $size; } add_filter( 'avf_post_featured_image_size', 'enfold_use_custom_featured_image_size', 10, 1 );
With this method, the “Regenerate Thumbnails” plugin does show my new custom-16-9-hero – 1280 x 720 size and creates the files correctly after regenerating. However, the theme’s single post template still ignores the filter and continues to display the old default cropped image.
My question is:
In the latest version of Enfold, what is the definitive and correct method to ensure the featured image on a single post page is displayed at a custom 16:9 ratio?
Thank you very much for your help.
Kind regards,
DavidProblem mit dem Avia Layout Architekten
Bei der Verwendung von Media-Elementen wie beispielsweise „Bild“ oder „Slide-Show“ kann es vorkommen, dass nach dem Aktualisieren der Seite das Bild im Frontend nicht angezeigt wird. Auch in der Mediathek wird es in der Detailansicht nicht gefunden. Die entsprechenden Thumbnails bleiben jedoch in der Mediathek erhalten.
Das Problem mit dem „Bild“-Element im Frontend lässt sich beheben, indem man im Reiter Stil unter Box Size eine Option aus dem Dropdown-Menü auswählt. Dadurch wird das Bild im Frontend korrekt angezeigt. In der Mediathek erscheint es in der Detailansicht allerdings weiterhin nicht.
Das größere Problem besteht jedoch bei der Verwendung des „Slide-Show“-Elements, da dort die Option Box Size nicht verfügbar ist. Ein neu hinzugefügtes Element wird zwar zunächst korrekt angezeigt, verschwindet jedoch nach dem vollständigen Aktualisieren der Seite.
Dieses Verhalten tritt ausschließlich in Verbindung mit dem Avia Layout Architekten auf. Mit dem Standard-Editor von WordPress werden die Bilder korrekt dargestellt. Zudem betrifft das Problem nur kürzlich hinzugefügte Bilder – bereits vorhandene Bilder sind nicht betroffen.
Weitere Media-Elemente wurden bislang nicht getestet. Es ist jedoch davon auszugehen, dass auch andere Elemente von diesem Fehler betroffen sein könnten.
I need to make some modifcations on portfoli0 items with the testimonials in place, for instance here:
https://anthonyi34.sg-host.com/portfolio-item/tanium-2/
I mag=nahed to change the color of the box and the size of the text in it, however I can’t target the little arrow, whe I did it made an arrow appear on the main grid of projects here:
https://anthonyi34.sg-host.com/projects/
To be honest I don;t recall how we turned the little arruws off on this grid beloew each thumbnail, but target the arrow even with testimonial added in the code not jst arrow made them reapear there.
So..how can I change the coloe of the little arrow just on the testimonials, and also how can Ichange the color of the text in the box. My css was able to make the text bigger but not effect the color.
Thanks so much
Topic: gallery are “far out”.
Hi
as you see here the navigation controls for the gallery are “far out”.
Image:
https://gwup.org/temporaer/enfold-navi-bug.jpgLive:
They are supposed to be IN the gallery and not miles above.
This bug can be reproduced.
Please tell me how to fix it (and fix it in your next update!)Here is the shortcode to reproduce it:
[av_section min_height='100' min_height_pc='25' min_height_px='500px' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' padding='default' margin='aviaTBmargin' custom_margin='0' custom_margin_sync='true' av-desktop-custom_margin='' av-desktop-custom_margin_sync='true' av-medium-custom_margin='' av-medium-custom_margin_sync='true' av-small-custom_margin='' av-small-custom_margin_sync='true' av-mini-custom_margin='' av-mini-custom_margin_sync='true' svg_div_top='' svg_div_top_color='#333333' svg_div_top_width='100' svg_div_top_height='50' svg_div_top_max_height='none' svg_div_top_opacity='' svg_div_bottom='' svg_div_bottom_color='#333333' svg_div_bottom_width='100' svg_div_bottom_height='50' svg_div_bottom_max_height='none' svg_div_bottom_opacity='' fold_type='' fold_height='' fold_more='Weiterlesen' fold_less='Read less' fold_text_style='' fold_btn_align='' color='main_color' background='bg_color' custom_bg='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' src_dynamic='' attach='scroll' position='top left' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='1' overlay_color='#003833' overlay_pattern='{{AVIA_BASE_URL}}images/background-images/diagonal-thin-dark.png' overlay_custom_pattern='' custom_arrow_bg='' fold_overlay_color='' fold_text_color='' fold_btn_color='theme-color' fold_btn_bg_color='' fold_btn_font_color='' size-btn-text='' av-desktop-font-size-btn-text='' av-medium-font-size-btn-text='' av-small-font-size-btn-text='' av-mini-font-size-btn-text='' fold_timer='' z_index_fold='' css_position_z_index='' av-desktop-css_position_z_index='' av-medium-css_position_z_index='' av-small-css_position_z_index='' av-mini-css_position_z_index='' id='' custom_class='backgroundvilla' template_class='' aria_label='' av_element_hidden_in_editor='0' av_uid='av-fhey3j' sc_version='1.0']
[av_icon_box icon='ue80b' font='entypo-fontello' title='Lorem Ipsum' position='top' icon_style='' boxed='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='' custom_title_size='' av-desktop-font-size-title='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' custom_content_size='' av-desktop-font-size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' heading_tag='div' heading_class='biszu' link='' link_dynamic='' linktarget='' title_attr='' linkelement='' id='' custom_class='' template_class='' av_uid='av-c6iolb' sc_version='1.0' admin_preview_bg='']
<h1>Lorem Ipsum dolor sid amend dolores</h1>
Weit hinten, hinter den Wortbergen, fern der Länder Vokalien und Konsonantien leben die Blindtexte. Abgeschieden wohnen sie in Buchstabhausen an der Küste des Semantik, eines großen Sprachozeans. Ein kleines Bächlein namens Duden fließt durch ihren Ort und versorgt sie mit den nötigen Regelialien. Es ist ein paradiesmatisches Land, in dem einem gebratene Satzteile in den Mund fliegen. Nicht einmal von der allmächtigen Interpunktion werden die Blindtexte beherrscht – ein geradezu unorthographisches Leben. Eines Tages aber beschloß eine kleine Zeile Blindtext, ihr Name war Lorem Ipsum, hinaus zu gehen in die weite Grammatik.
[/av_icon_box][av_gallery ids='12076,12077,12078,12079,12080' ids_dynamic='' style='big_thumb lightbox_gallery' preview_size='no scaling' crop_big_preview_thumbnail='avia-gallery-big-crop-thumb' thumb_size='medium' columns='12' thumbs_hover='' control_layout='av-control-default' slider_navigation='av-navigate-arrows' nav_visibility_desktop='av-nav-arrows-visible' nav_arrow_color='' nav_arrow_bg_color='' imagelink='lightbox' link_dest='' lightbox_text='no_text' lazyload='avia_lazyload' img_scrset='' html_lazy_loading='disabled' alb_description='' id='' custom_class='' template_class='' av_uid='av-mb5at8df' sc_version='1.0' admin_preview_bg='']
[/av_section]kind regards
AndrèRedesigning a site for a client on a temp url, and need to thumbnail navigation on layer slider slideshows, for instance here:
The thumbnail nav seems to be enabled.
Doesn’t work with all plugins disabled so not a conflict. I must be missing something.
In the layerslider area the slider is [layerslider id=”18″] Architecture
I wonder if this has something to do with using one of the pre-fab layersiders which didn’t have thumbnails.
Anyway How can I turn them on/
Thanks so much.