Viewing 30 results - 1 through 30 (of 23,472 total)
  • Author
    Search Results
  • #1487409

    ok – if you like to have on default a sidebar header – and on homepage only the header top position.
    ( for that scenario we need than a bit different css too if you like to have slide-out from left to right)

    1 set your enfold child to header top and make all your decisions you like to have for that header ( height, logo left or right, navigation position, shrink or not, etc pp )

    2 Go to your homepage editor and make your decision there – f.e. if it should have transparency etc.

    3 Look now to your homepage with dev tools of your browser. Note your ID of that page and look what classes are set on #header
    e.g.: ( all_colors header_color light_bg_color av_header_top av_logo_right av_main_nav_header av_menu_left av_custom av_header_sticky av_header_shrinking av_header_stretch av_mobile_menu_tablet av_header_searchicon av_header_unstick_top_disabled av_bottom_nav_disabled av_header_border_disabled )

    4 now switch back to your header left position.

    put this to your child-theme functions.php:

    (remove options you do not need – or replace – f.e. header_size and header_custom_size and replace by header_size: ‘slim’ / or large )
    find those header settings in : avia_header.php

    function av_change_header_style($header){
      if(is_page(array( 17, 123456))){ 
        $header['header_position']    = "header_top";
        $header['header_layout']      = 'logo_right main_nav_header menu_left';
    
        $header['header_size']        = 'custom';
        $header['header_custom_size'] =  140;
        $header['header_shrinking']   = 'header_shrinking';
        $header['header_sticky']      = 'header_sticky';
        $header['header_shrinking']   = 'header_shrinking';
    
        $header['header_class'] = " all_colors header_color light_bg_color av_header_top av_logo_right av_main_nav_header av_menu_left av_custom av_header_sticky av_header_shrinking av_header_stretch av_mobile_menu_tablet av_header_searchicon av_header_unstick_top_disabled av_bottom_nav_disabled av_header_border_disabled";
      }
        return $header; 
    }
    add_filter('avf_header_setting_filter','av_change_header_style');

    here in this example there are two pages (ID’s) replaced with that different layout – adjust to your home page ID
    this filter has a lot more options.

    see example page: https://clean.webers-testseite.de/

    #1487399

    Hi,
    The error in the browser console: Uncaught Error: Syntax error, unrecognized expression: #facilitytype=0&sortby=Date&view=Grouping&holes=3&timeperiod=3&timemax=42&timemin=10&players=0&pricemax=10000&pricemin=0&promotedcampaignsonly=false
    is from the code in your Golf Sim Booking menu item: https://www.golfnow.com/tee-times/facility/19545-fremont-clubhouse/search#facilitytype=0&sortby=Date&view=Grouping&holes=3&timeperiod=3&timemax=42&timemin=10&players=0&pricemax=10000&pricemin=0&promotedcampaignsonly=false
    The hash fragment (#facilitytype=0&sortby=Date…) resembles a query string, jQuery is trying to interpret it as a DOM selector (e.g., an element ID), which causes the syntax error.
    Try removing this menu link and see if it solves.

    Best regards,
    Mike

    pretuziano
    Participant

    Hi Kriesi Team,

    I have noticed a PHP warning appearing in the file:
    config-templatebuilder/avia-shortcodes/search/search.php (line 816):

    Warning: Undefined variable $ajax_container
    After some investigation, it seems the issue is caused by the variable $ajax_container being used without prior initialization.

    The relevant code snippet is:

    if( 'custom' == $atts['ajax_location'] && $atts['ajax_container'] !== '' )
    {
        $results_container_attr = " data-ajaxcontainer='{$ajax_container}'";
    }

    Here, $atts[‘ajax_container’] is checked but $ajax_container (without $atts) is used, which is undefined, triggering the warning.

    Proposed fix:

    Replace
    $results_container_attr = " data-ajaxcontainer='{$ajax_container}'";

    with
    $results_container_attr = " data-ajaxcontainer='{$atts['ajax_container']}'";

    This change should eliminate the warning and correctly reference the intended value.

    Please consider integrating this fix in a future update.

    Thanks for your great work on the theme!

    • This topic was modified 1 week, 6 days ago by pretuziano.
    #1486633

    Hi,

    Thank you for the inquiry.

    You may need to apply a minimum height to the search wrapper or add more content below the search form.

    .search-wrapper {
        min-height: 400px;
    }
    

    View post on imgur.com

    Best regards,
    Ismael

    Hey steviger,

    Thank you for the inquiry.

    You may need to adjust the background-position and right padding a bit. Please try this css code:

    .av_searchform_wrapper {
        border: #2c7d95 1px solid!important;
        border-radius: 40px!important;
        background-image: url('https://www.steviger.nl/wp-content/uploads/2025/07/vergrootglas.webp');
        background-repeat: no-repeat;
        background-position: right 20px center;
        padding-right: 50px;
    }

    To disable the ajax response container, include this:

    #top .ajax_search_response {
        display: none !important;
    }
    

    View post on imgur.com

    Best regards,
    Ismael

    aintzerga
    Participant

    Hello,

    We need to create a page with the portfolio content and a side menu to search and filter the grid content.
    I’ve attached a screenshot of what we want to do in this download link: https://we.tl/t-n4UVsEjvWc

    This is the page you’re building, but we don’t know how to add a side menu for searching and filtering: https://limousin.eus/website2025/aaa-pruebas/

    What would the solution be with Enfold?

    Thank you.

    steviger
    Participant

    Hi guys,
    A pretty straight forward question. How can I properly right position a background image (icon) with a right padding in the searchbox?
    I’ve done it several times with other projects but after half a day trying, I can’t seem to get it to work this time.
    This is the CSS so far:

    .av_searchform_wrapper {
    border: #2c7d95 1px solid!important;
    border-radius: 40px!important;	
    	background-image: url('https://www.steviger.nl/wp-content/uploads/2025/07/vergrootglas.webp'); 
      background-repeat: no-repeat;
      background-position: right center;
    	padding-right:30px;
    }
    
    #top #s{background:#fff!important;}
    

    And, while I’m on it…. How can I hide the Ajax search response because this no longer works

    #top #searchform .ajax_search_response, .ajax_load {
    display: none !important;
    } 

    Thanks in advance!

    Regards,
    Steven

    #1486575
    schweg33
    Participant

    Hello everyone
    I have added a search here:
    Link 1 below:
    When I am on this search and click “Hier auswählen” the list opens.
    “OK” and “Abrechen” Both buttons are fully visible.

    I have also added the same search here:
    Link 2 below:
    When I am on this search and click “Hier auswählen” the list opens.
    “OK” and “Abrechen” Both buttons are only half visible.

    What can I do here
    Thanks
    best regards
    Franz

    #1486508

    Hey torture4,

    Search engine result pages can take a long time to update, I would suggest that you request the search engine in question to index your site again and wait for a while.

    Best regards,
    Rikard

    #1486498
    torture4
    Participant

    I’ve just switched my website to the new design, built under the Enfold Theme. Very happy with the result!

    However, I notice that the Google Site Map for the site (when it comes up in a Google search) is out of date, and still referencing the old site. So some of the links in the old site map are going to 404, because the structure of the new Enfold site has changed.

    Is Google Site Map refresh or config built into the Enfold Theme? If not, do you recommend either (a) a plugin that can update the sitemap file, or (b) a manual way to do it?

    Thanks, Nick

    Hi,

    You can set the font size by editing the Special Heading element containing the text “Hi, I’m Robert”. Look for the Styling > Font Sizes > Heading Font Size option, as shown in the screenshot below.

    View post on imgur.com

    For the screenshot, you can use platforms like Savvyify, Imgur or Dropbox.

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    ThiloKiefer
    Participant

    Hi Enfold Team,

    we’d like to get your feedback regarding the page structure and semantic markup used in our Enfold setup. An accessibility tool pointed out that our website lacks a <main> landmark, which is suboptimal in terms of both accessibility (screen reader navigation) and SEO.

    Observation:
    Currently, our page structure looks something like this:
    ——————-
    <div class=”main”>
    <!– content –>
    </div>
    ————–
    The accessibility tool reports that a semantic <main> element is missing, which is important for screen readers and search engines.

    Question:
    From your perspective, is there any reason not to change the markup to the following?
    ——————-
    <main class=”main”>
    <!– content –>
    </main>
    ———————
    Can you confirm whether this change is reasonable and compatible with Enfold, or is there anything we should be aware of before implementing it?

    Thanks in advance,

    #1486399

    Topic: Favicon Not Appearing

    in forum Enfold
    aron8778
    Participant

    HI Guys,

    I have tried to get this Favicon indexed for weeks, it is currently uploaded to appearance > customise area but also tried the Favicon in the Enfold settings and getting no joy whatsoever.

    Can anyone advise please?

    It displays when I am logged in but when and logged out in incognito but its not being picked up with Google

    https://www.google.com/search?q=site%3Abanburyroofingandpaving.co.uk&oq=site%3Abanburyroofingandpaving.co.uk&gs_lcrp=EgZjaHJvbWUqBggAEEUYOzIGCAAQRRg7MgYIARBFGDrSAQc5MjNqMGo0qAIAsAIA&sourceid=chrome&ie=UTF-8

    By the way, if you have two date pickers, one for the start date and one for the end date, you can restrict the second date picker so that it only allows dates that are later. For example, we can also remove weekends from the selection.

    here in my example the minDate/maxDate are relative Values by +7 Days and +12 Month:

    
    function my_datepicker_limits() {
    ?>
    <script type="text/javascript">
    window.addEventListener("DOMContentLoaded", function () { 
    (function($) { 
        setTimeout(function() {
            var $allDatepickers = $('.avia_datepicker');
    
            // Let's assume that the first avia_datepicker found is the start date
            var $startDateField = $allDatepickers.eq(0);
            // and the second avia_datepicker found the end date
            var $endDateField = $allDatepickers.eq(1);
    
            // Check whether we have found at least two datepicker fields
            if ($startDateField.length === 0 || $endDateField.length === 0) {
                console.warn('Could not find both Start and End datepicker fields. Ensure they are the first two .avia_datepicker elements.');
                return; // Exit script if not enough fields are found
            }
    
            // Find the container of the end date field (the <p> element in your structure)
            // This is the parent tag of the input field that also contains the label.
            var $endDateFieldContainer = $endDateField.parent('p.form_element');
    
            // Fallback if the container is not the <p> tag or is not found
            if (!$endDateFieldContainer.length) {
                $endDateFieldContainer = $endDateField; // Then we only hide the input field itself
            }
    
            function updateEndDatepickerState() {
                var selectedStartDate = $startDateField.datepicker('getDate');
                
    
                if (selectedStartDate) {
                    // Optional: Add one day to ensure that the end date is at least one day after the start date.
                    // then remove the backslashes of the next line
                    // selectedStartDate.setDate(selectedStartDate.getDate() + 1);
                  
                    // If a start date is selected, display the end date field
                    $endDateFieldContainer.css('display', 'block'); // Verwendet 'block', da <p> ein Block-Element ist
    
                    $endDateField.datepicker('option', 'minDate', selectedStartDate);
    
                    // Optional: Make sure that the end date is not before the start date.
                    var currentEndDate = $endDateField.datepicker('getDate');
                    if (currentEndDate && currentEndDate < selectedStartDate) {
                        $endDateField.datepicker('setDate', selectedStartDate);
                    }
    
                } else {
                    // If no start date is selected, hide the end date field
                    $endDateFieldContainer.css('display', 'none');
    
                    // Reset minDate of the end date date picker (e.g. to “today”)
                    $endDateField.datepicker('option', 'minDate', 0);
                }
            }
    
            if ($startDateField.data('datepicker')) {
                $startDateField.datepicker('option', {
                    beforeShowDay: $.datepicker.noWeekends,
                    minDate: "+7d", 
                    maxDate: "+12m",
                    onSelect: function(dateText, inst) {
                        // Update the state when a date is selected
                        updateEndDatepickerState();
                    },
                    onClose: function(dateText, inst) {
                        // Update the state even when closing the data picker (for robustness)
                        updateEndDatepickerState();
                    }
                });
            }
    
            if ($endDateField.data('datepicker')) {
                $endDateField.datepicker('option', {
                    // beforeShowDay: $.datepicker.noWeekends,
                    minDate: 0,
                    maxDate: "+12m"
                });
            }
    
            // Execute the function once when loading the page to set the initial state
            updateEndDatepickerState();
    
        }, 500);
    }(jQuery));
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'my_datepicker_limits', 20);
    

    see: https://webers-testseite.de/datepicker/

    Edit here – because topic is closed:

    This was also only intended as additional information. It is in case someone lands here via the search. They may have exactly this request.

    #1486301

    Hi,

    Thank you for the update.

    1.) Try adjusting the top margin of the button layer.

    2.) Apply a minimum height to one of the main layers, or go to Project Settings > Layout > Layout Settings > Canvas Height and adjust the value.

    3.) Apply a Custom CSS Class name to the element and replace the generic selector with it. You can follow this guide: https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    Hey luleloki,

    Sorry for the late reply.

    1. You would have to target each element using custom CSS. If you need help with that then please try to explain your intentions a bit further.

    2. I’m not sure if that is possible, but this is general web development problem and not something theme specific. You might have better luck simply searching for it online, or ask the question on a general web development forum instead.

    Best regards,
    Rikard

    #1486243

    Topic: Focusable elements

    in forum Enfold
    Biggy
    Participant

    Hi,
    the topic of accessibility is currently on our minds. We actually have it well under control, and the Enfold theme is exemplary in this regard. Currently, we’re working on focusable elements, such as buttons that indicate the action behind them when hovered over. If you only use the keyboard, this change in the button color isn’t visible. This leads to complaints. Do you have any ideas how to solve this? This also applies to links or searches…basically, every interaction!

    Regards

    #1486224

    [Tue Jul 01 12:31:29.764989 2025] [:error] [pid 2559678:tid 2559698] [client 41.60.102.47:56602] client denied by server configuration: /home/oxfordpr/public_html/
    [Tue Jul 01 12:31:29.357238 2025] [:error] [pid 2559678:tid 2559698] [client 41.60.102.47:56602] client denied by server configuration: /home/oxfordpr/public_html/
    [Tue Jul 01 12:31:19.789999 2025] [:error] [pid 2545858:tid 2545946] [client 41.60.102.47:56601] client denied by server configuration: /home/oxfordpr/public_html/
    [Tue Jul 01 12:31:19.295139 2025] [:error] [pid 2545858:tid 2545946] [client 41.60.102.47:56601] client denied by server configuration: /home/oxfordpr/public_html/
    [Sun Jun 29 08:39:57.686978 2025] [:error] [pid 3061504:tid 3061600] [client 20.86.148.109:58743] client denied by server configuration: /home/oxfordpr/public_html/
    [Wed Jun 25 13:36:46.080908 2025] [:error] [pid 699407:tid 699500] [client 1.21.49.191:21712] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:36:44.957380 2025] [:error] [pid 699407:tid 699500] [client 1.21.49.191:21712] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:36:43.882888 2025] [:error] [pid 699407:tid 699500] [client 1.21.49.191:21712] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:36:42.808727 2025] [:error] [pid 699407:tid 699500] [client 1.21.49.191:21712] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:36:41.710760 2025] [:error] [pid 699407:tid 699500] [client 1.21.49.191:21712] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:36:40.640729 2025] [:error] [pid 699407:tid 699500] [client 1.21.49.191:21712] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:36:21.943834 2025] [:error] [pid 699528:tid 699701] [client 1.21.49.191:21679] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:36:20.850634 2025] [:error] [pid 699528:tid 699701] [client 1.21.49.191:21679] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:36:19.751579 2025] [:error] [pid 699528:tid 699701] [client 1.21.49.191:21679] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:36:18.676459 2025] [:error] [pid 699528:tid 699701] [client 1.21.49.191:21679] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:36:17.547067 2025] [:error] [pid 699528:tid 699701] [client 1.21.49.191:21679] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:36:16.475076 2025] [:error] [pid 699528:tid 699701] [client 1.21.49.191:21679] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:35:57.740637 2025] [:error] [pid 699528:tid 699710] [client 1.21.49.191:21653] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:35:56.652982 2025] [:error] [pid 699528:tid 699710] [client 1.21.49.191:21653] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:35:55.525178 2025] [:error] [pid 699528:tid 699710] [client 1.21.49.191:21653] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:35:54.456416 2025] [:error] [pid 699528:tid 699710] [client 1.21.49.191:21653] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:35:33.509090 2025] [:error] [pid 699532:tid 699770] [client 1.21.49.191:21645] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:35:32.411426 2025] [:error] [pid 699532:tid 699770] [client 1.21.49.191:21645] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:34:45.128086 2025] [:error] [pid 721876:tid 721898] [client 1.21.49.191:21597] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:34:44.008524 2025] [:error] [pid 721876:tid 721898] [client 1.21.49.191:21597] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:34:42.935401 2025] [:error] [pid 721876:tid 721898] [client 1.21.49.191:21597] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:34:41.792542 2025] [:error] [pid 721876:tid 721898] [client 1.21.49.191:21597] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:34:40.728742 2025] [:error] [pid 721876:tid 721898] [client 1.21.49.191:21597] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:34:20.987721 2025] [:error] [pid 699407:tid 699521] [client 1.21.49.191:21565] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:34:19.915929 2025] [:error] [pid 699407:tid 699500] [client 1.21.49.191:21584] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:34:18.846802 2025] [:error] [pid 699407:tid 699500] [client 1.21.49.191:21584] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:34:17.776619 2025] [:error] [pid 699407:tid 699521] [client 1.21.49.191:21565] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:34:16.676339 2025] [:error] [pid 699407:tid 699521] [client 1.21.49.191:21565] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:34:15.599007 2025] [:error] [pid 699407:tid 699521] [client 1.21.49.191:21565] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:33:56.946947 2025] [:error] [pid 699532:tid 699779] [client 1.21.49.191:21526] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:33:55.872554 2025] [:error] [pid 699532:tid 699779] [client 1.21.49.191:21526] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:33:54.796833 2025] [:error] [pid 699532:tid 699779] [client 1.21.49.191:21526] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:33:53.675518 2025] [:error] [pid 699532:tid 699779] [client 1.21.49.191:21526] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:33:52.597282 2025] [:error] [pid 699532:tid 699779] [client 1.21.49.191:21526] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:33:51.527427 2025] [:error] [pid 699532:tid 699779] [client 1.21.49.191:21526] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:33:31.250663 2025] [:error] [pid 720599:tid 720614] [client 1.21.49.191:21506] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:33:30.184278 2025] [:error] [pid 720599:tid 720614] [client 1.21.49.191:21506] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:33:29.079974 2025] [:error] [pid 720599:tid 720614] [client 1.21.49.191:21506] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:33:28.011549 2025] [:error] [pid 720599:tid 720614] [client 1.21.49.191:21506] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:33:26.913410 2025] [:error] [pid 720599:tid 720614] [client 1.21.49.191:21506] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:33:25.793005 2025] [:error] [pid 720599:tid 720614] [client 1.21.49.191:21506] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:33:07.051537 2025] [:error] [pid 699531:tid 699752] [client 1.21.49.191:22135] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:33:05.963523 2025] [:error] [pid 699531:tid 699752] [client 1.21.49.191:22135] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:33:04.856795 2025] [:error] [pid 699531:tid 699752] [client 1.21.49.191:22135] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:33:03.762901 2025] [:error] [pid 699531:tid 699752] [client 1.21.49.191:22135] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:33:02.664400 2025] [:error] [pid 699531:tid 699752] [client 1.21.49.191:22135] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:33:01.593706 2025] [:error] [pid 699531:tid 699752] [client 1.21.49.191:22135] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:32:42.922932 2025] [:error] [pid 720599:tid 720616] [client 1.21.49.191:22109] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:32:41.822191 2025] [:error] [pid 720599:tid 720616] [client 1.21.49.191:22109] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:32:40.754311 2025] [:error] [pid 720599:tid 720616] [client 1.21.49.191:22109] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:32:39.687951 2025] [:error] [pid 720599:tid 720616] [client 1.21.49.191:22109] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:32:38.591799 2025] [:error] [pid 720599:tid 720616] [client 1.21.49.191:22109] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:32:37.525162 2025] [:error] [pid 720599:tid 720616] [client 1.21.49.191:22109] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:32:18.752517 2025] [:error] [pid 699531:tid 699777] [client 1.21.49.191:22084] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:32:17.687561 2025] [:error] [pid 699531:tid 699777] [client 1.21.49.191:22084] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:32:16.581721 2025] [:error] [pid 699531:tid 699777] [client 1.21.49.191:22084] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:32:15.508905 2025] [:error] [pid 699531:tid 699777] [client 1.21.49.191:22084] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:32:14.405200 2025] [:error] [pid 699531:tid 699777] [client 1.21.49.191:22084] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:31:54.636310 2025] [:error] [pid 699407:tid 699520] [client 1.21.49.191:22071] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:31:53.563401 2025] [:error] [pid 699407:tid 699520] [client 1.21.49.191:22071] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:31:52.464510 2025] [:error] [pid 699407:tid 699520] [client 1.21.49.191:22071] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:31:51.378877 2025] [:error] [pid 699407:tid 699520] [client 1.21.49.191:22071] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:31:30.539889 2025] [:error] [pid 699531:tid 699753] [client 1.21.49.191:22039] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:31:29.474347 2025] [:error] [pid 699531:tid 699753] [client 1.21.49.191:22039] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:31:06.293328 2025] [:error] [pid 699531:tid 699752] [client 1.21.49.191:22025] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:31:05.220938 2025] [:error] [pid 699531:tid 699752] [client 1.21.49.191:22025] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:31:04.119163 2025] [:error] [pid 699531:tid 699752] [client 1.21.49.191:22025] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:31:03.045206 2025] [:error] [pid 699531:tid 699752] [client 1.21.49.191:22025] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:31:01.930315 2025] [:error] [pid 699531:tid 699752] [client 1.21.49.191:22025] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:31:00.834437 2025] [:error] [pid 699531:tid 699752] [client 1.21.49.191:22025] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:30:42.121398 2025] [:error] [pid 720599:tid 720606] [client 1.21.49.191:22024] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:30:41.042932 2025] [:error] [pid 720599:tid 720606] [client 1.21.49.191:22024] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:30:39.969491 2025] [:error] [pid 720599:tid 720606] [client 1.21.49.191:22024] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:30:38.842812 2025] [:error] [pid 720599:tid 720606] [client 1.21.49.191:22024] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:30:37.775953 2025] [:error] [pid 720599:tid 720606] [client 1.21.49.191:22024] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:30:16.912330 2025] [:error] [pid 699407:tid 699510] [client 1.21.49.191:22003] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:30:15.800432 2025] [:error] [pid 699407:tid 699510] [client 1.21.49.191:22003] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:30:14.697517 2025] [:error] [pid 699407:tid 699510] [client 1.21.49.191:22003] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:30:13.630438 2025] [:error] [pid 699407:tid 699510] [client 1.21.49.191:22003] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:29:53.717333 2025] [:error] [pid 699528:tid 699704] [client 1.21.49.191:21941] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:29:52.630780 2025] [:error] [pid 699528:tid 699704] [client 1.21.49.191:21941] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:29:50.506552 2025] [:error] [pid 699528:tid 699704] [client 1.21.49.191:21941] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:29:49.402167 2025] [:error] [pid 699528:tid 699704] [client 1.21.49.191:21941] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:29:29.563066 2025] [:error] [pid 721876:tid 721880] [client 1.21.49.191:21921] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:29:28.466293 2025] [:error] [pid 721876:tid 721880] [client 1.21.49.191:21921] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:29:27.366328 2025] [:error] [pid 721876:tid 721880] [client 1.21.49.191:21921] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:29:05.351944 2025] [:error] [pid 699405:tid 699457] [client 1.21.49.191:21896] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:29:04.290110 2025] [:error] [pid 699405:tid 699457] [client 1.21.49.191:21896] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:29:03.193167 2025] [:error] [pid 699405:tid 699457] [client 1.21.49.191:21896] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:29:02.093784 2025] [:error] [pid 699405:tid 699457] [client 1.21.49.191:21896] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:29:01.008242 2025] [:error] [pid 699405:tid 699457] [client 1.21.49.191:21896] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:28:59.903503 2025] [:error] [pid 699405:tid 699457] [client 1.21.49.191:21896] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:28:41.154339 2025] [:error] [pid 699407:tid 699505] [client 1.21.49.191:21872] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:28:40.059909 2025] [:error] [pid 699407:tid 699505] [client 1.21.49.191:21872] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:28:38.937875 2025] [:error] [pid 699407:tid 699505] [client 1.21.49.191:21872] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:28:37.873139 2025] [:error] [pid 699407:tid 699505] [client 1.21.49.191:21872] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:28:36.809084 2025] [:error] [pid 699407:tid 699505] [client 1.21.49.191:21872] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:28:35.703364 2025] [:error] [pid 699407:tid 699505] [client 1.21.49.191:21872] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:28:16.882862 2025] [:error] [pid 699532:tid 699793] [client 1.21.49.191:21858] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:28:15.769739 2025] [:error] [pid 699532:tid 699793] [client 1.21.49.191:21858] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:28:14.666119 2025] [:error] [pid 699532:tid 699793] [client 1.21.49.191:21858] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:28:13.610703 2025] [:error] [pid 699532:tid 699793] [client 1.21.49.191:21858] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:28:12.504120 2025] [:error] [pid 699532:tid 699793] [client 1.21.49.191:21858] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:27:52.646173 2025] [:error] [pid 699406:tid 699479] [client 1.21.49.191:21815] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:27:51.559372 2025] [:error] [pid 699406:tid 699479] [client 1.21.49.191:21815] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:27:28.380861 2025] [:error] [pid 699406:tid 699477] [client 1.21.49.191:21782] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:27:27.289191 2025] [:error] [pid 699406:tid 699477] [client 1.21.49.191:21782] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:27:26.174718 2025] [:error] [pid 699406:tid 699477] [client 1.21.49.191:21782] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:27:25.068841 2025] [:error] [pid 699406:tid 699477] [client 1.21.49.191:21782] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:27:23.997952 2025] [:error] [pid 699406:tid 699477] [client 1.21.49.191:21782] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:27:22.930924 2025] [:error] [pid 699406:tid 699477] [client 1.21.49.191:21782] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:27:04.111619 2025] [:error] [pid 699405:tid 699460] [client 1.21.49.191:21759] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:27:03.039406 2025] [:error] [pid 699405:tid 699460] [client 1.21.49.191:21759] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:27:01.915490 2025] [:error] [pid 699405:tid 699460] [client 1.21.49.191:21759] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:27:00.854884 2025] [:error] [pid 699405:tid 699460] [client 1.21.49.191:21759] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:26:59.783064 2025] [:error] [pid 699405:tid 699460] [client 1.21.49.191:21759] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:26:58.657233 2025] [:error] [pid 699405:tid 699460] [client 1.21.49.191:21759] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:26:39.784350 2025] [:error] [pid 699531:tid 699764] [client 1.21.49.191:21706] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:26:38.715462 2025] [:error] [pid 699531:tid 699764] [client 1.21.49.191:21706] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:26:37.623787 2025] [:error] [pid 699531:tid 699764] [client 1.21.49.191:21706] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:26:36.509496 2025] [:error] [pid 699531:tid 699764] [client 1.21.49.191:21706] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:26:35.448821 2025] [:error] [pid 699531:tid 699764] [client 1.21.49.191:21706] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:26:15.574563 2025] [:error] [pid 699407:tid 699515] [client 1.21.49.191:21682] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:26:14.498317 2025] [:error] [pid 699407:tid 699515] [client 1.21.49.191:21682] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:25:51.278674 2025] [:error] [pid 699405:tid 699458] [client 1.21.49.191:21643] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:25:50.191700 2025] [:error] [pid 699405:tid 699458] [client 1.21.49.191:21643] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:25:49.099135 2025] [:error] [pid 699405:tid 699458] [client 1.21.49.191:21643] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:25:47.990035 2025] [:error] [pid 699405:tid 699458] [client 1.21.49.191:21643] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:25:46.899299 2025] [:error] [pid 699405:tid 699458] [client 1.21.49.191:21643] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:25:27.055903 2025] [:error] [pid 699406:tid 699490] [client 1.21.49.191:21588] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:25:25.987435 2025] [:error] [pid 699406:tid 699490] [client 1.21.49.191:21588] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:25:24.877803 2025] [:error] [pid 699406:tid 699490] [client 1.21.49.191:21588] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:25:23.775447 2025] [:error] [pid 699406:tid 699490] [client 1.21.49.191:21588] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:25:22.709584 2025] [:error] [pid 699406:tid 699490] [client 1.21.49.191:21588] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:25:02.817370 2025] [:error] [pid 720599:tid 720617] [client 1.21.49.191:21587] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:25:01.742163 2025] [:error] [pid 720599:tid 720617] [client 1.21.49.191:21587] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:25:00.658604 2025] [:error] [pid 720599:tid 720617] [client 1.21.49.191:21587] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 13:24:59.585281 2025] [:error] [pid 720599:tid 720617] [client 1.21.49.191:21587] client denied by server configuration: /home/oxfordpr/public_html/, referer: https://search.yahoo.co.jp/
    [Wed Jun 25 10:46:02.276386 2025] [:error] [pid 476617:tid 476703] [client 104.197.88.221:53703] client denied by server configuration: /home/oxfordpr/public_html/wp-includes/js/jquery/jquery.js
    [Wed Jun 25 10:46:01.345717 2025] [:error] [pid 476617:tid 476703] [client 104.197.88.221:53703] client denied by server configuration: /home/oxfordpr/public_html/media
    [Wed Jun 25 08:31:59.268443 2025] [:error] [pid 246545:tid 246663] [client 35.222.211.206:52565] client denied by server configuration: /home/oxfordpr/public_html/wp-includes/js/jquery/jquery.js
    [Wed Jun 25 08:31:57.112867 2025] [:error] [pid 246547:tid 246670] [client 35.222.211.206:57580] client denied by server configuration: /home/oxfordpr/public_html/media
    [Wed Jun 25 07:21:20.691801 2025] [authz_core:error] [pid 182563:tid 182572] [client 13.235.238.85:51756] AH01630: client denied by server configuration: /home/oxfordpr/public_html/wp-content/uploads/wpcf7_uploads/, referer: binance.com

    #1486180

    Hi,

    Thank you for the screenshot.

    Please note that the html or the value inside the data-avia-search-tooltip attribute will be converted into actual html by a script, and html entities such as & quot; will be rendered as actual quotation marks in the end. This is the search form that pops up when you click the search icon.

    Best regards,
    Ismael

    WPDESIGNER
    Participant

    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,
    David

    #1485977

    Dear Ismael, dear Guenni007,
    Thank you very much for your detailed support and for taking the time to look into the accessibility issue regarding the search icon …
    We truly appreciate all the suggestions and the effort you put into providing possible solutions. Also thanks to Günter for stepping in and offering further technical advice.
    In the end, the client decided to go with the simplest approach and asked me to remove the search icon entirely from the menu to avoid any further complications. So, with this solution, the issue is resolved from our side.

    Best regards,
    Diana

    #1485950
    jugalbandi3
    Participant

    Hi,

    We observed duplicate id-attributes in the mobile menu (hamburger-menu), similar to what is described in

    This came up when trying to check and optimize website-compatiblity for screenreaders. Nodes of the main menu are copied over to the hamburger-menu. svg-icons (for the search) contain id-attributes which simply get duplicated – but obviously need to be transformed to become unique again.

    A modification of this copy-behaviour would for example be possible in
    wp-content/themes/enfold/js/avia-snippet-hamburger-menu.js
    in function normalize_layout().

    Quick-and-dirty code for those replacements:
    There was:
    var menu2 = $(‘#header .main_menu’).clone(true),
    ul = menu2.find(‘ul.av-main-nav’),
    id = ul.attr(‘id’);

    We then added lines to search for the corresponding nodes in the HTML with jQuery and make replacements for all hits. ‘-hamburger’ is appended to the IDs.

    var toChange;
    toChange = menu2.find(‘[id^=av-svg-desc-‘);
    toChange.each(function() {
    $(this).attr(‘id’, $(this).attr(‘id’) + ‘-hamburger’);
    });
    toChange = menu2.find(‘[id^=av-svg-title-‘);
    toChange.each(function() {
    $(this).attr(‘id’, $(this).attr(‘id’) + ‘-hamburger’);
    });
    toChange = menu2.find(‘[aria-labelledby^=av-svg-title-‘);
    toChange.each(function() {
    $(this).attr(‘aria-labelledby’, $(this).attr(‘aria-labelledby’) + ‘-hamburger’);
    });
    toChange = menu2.find(‘[aria-describedby^=av-svg-desc-‘);
    toChange.each(function() {
    $(this).attr(‘aria-describedby’, $(this).attr(‘aria-describedby’) + ‘-hamburger’);
    });

    It’s quite an edge case, but could potentially irritate a screen reader.

    #1485938

    Hi,

    This is not a general problem with the theme, it’s a server error response. If your server is blocking requests or not allowing necessary actions, then there’s not much we can do unfortunately. I see Javascript errors coming from the Smash Balloon plugin while editing pages on your site though, does only deactivating that change anything?

    What I quoted above are general recommendations for you to test, they are generated by Google search results, but you are welcome to do your own research or reach out to your hosting provider for further suggestions or help.

    Best regards,
    Rikard

    #1485931

    Hey profumopuntoit,

    Thank you for the inquiry.

    You can add this css code to adjust the width and height of the SVG icons.

    .responsive #top #wrap_all .menu-item-search-dropdown >a > svg {
        width: 24px;
        height: 24px;
    }
    
    .responsive #top #wrap_all #menu-item-shop .cart_dropdown_link .av-cart-container svg {
        width: 24px;
        height: 18px;
    }
    

    Let us know the result.

    Best regards,
    Ismael

    #1485834
    profumopuntoit
    Participant

    Hello,

    search lens and cart svg dimensions are too big. It is not the first time that it happens.

    <svg version=”1.1″ xmlns=”http://www.w3.org/2000/svg&#8221; width=”25″ height=”32″ viewBox=”0 0 25 32″ preserveAspectRatio=”xMidYMid meet” aria-labelledby=”av-svg-title-2″ aria-describedby=”av-svg-desc-2″ role=”graphics-symbol” aria-hidden=”true”>……..
    </svg>

    <svg version=”1.1″ xmlns=”http://www.w3.org/2000/svg&#8221; width=”25″ height=”32″ viewBox=”0 0 29 32″ preserveAspectRatio=”xMidYMid meet” aria-labelledby=”av-svg-title-3″ aria-describedby=”av-svg-desc-3″ role=”graphics-symbol” aria-hidden=”true”>……
    </svg>

    everything is updated to last version

    How can we adjust?

    Please see screenshot in private content

    Thank you
    Mauro

    #1485657

    Hi,

    We can’t reproduce the issue with the section backgrounds. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot.

    View post on imgur.com

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    #1485653

    Hey John,

    Thank you for the inquiry.

    The theme only supports Smash Balloon Social Photo Feed – Easy Social Feeds Plugin for Instagram posts. For facebook feeds, you may need to use one of the following plugins:

    https://wordpress.org/plugins/custom-facebook-feed/
    https://wordpress.org/plugins/search/facebook+feed/

    Unfortunately, the theme does not include a default integration for this plugin or for facebook feeds.

    Best regards,
    Ismael

    #1485615

    Hi,

    However, I believe there may have been a misunderstanding regarding the issue. The problem is not with the icon itself or its aria-hidden attribute, but with the structure and function of the link that wraps the icon.

    If we’re not mistaken, the issue occurs because the SVG icon includes the aria-hidden attribute, which makes it unreadable to accessibility tools. As a result, the parent link is marked as “suspicious” since the icon is hidden and the link lacks any accessible text or description. The span avia_hidden_link_text, which contains the word “Search” also has its display property set to none, making it inaccessible to screen readers as well.

    Removing the aria-hidden attribute from the SVG icon or adjusting the visibility of the avia_hidden_link_text should help.

    #top .avia_hidden_link_text {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
        border: 0;
    }

    You can also try editing the enfold/includes/config-enfold/functions-enfold.php, around line 125, change the text “Search” to “Click here to search”.

    $items .=			'<span class="avia_hidden_link_text">' . __( 'Click Here to Search', 'avia_framework' ) . '</span>';
    

    According to https://wave.webaim.org/, screen readers tend to better interpret buttons or links when it contains more descriptive text.

    View post on imgur.com

    If this doesn’t help, you can always try the suggestions above.

    Let us know the result.

    Best regards,
    Ismael

    #1485564

    by the way – it is nice to have an embedded tab navigation now on Enfold – but to prevent that mouse events do show the focus setting – it might be better to go to the focus-visible or focus-within setting. These rulesets do not influence the click or hover states of links / buttons etc.

    f.e. :

    
    #menu-item-search a.avia-svg-icon:focus {
      outline: none !important;
    }
    #menu-item-search a.avia-svg-icon:focus-visible > svg {
      outline: 3px solid red !important;
      outline-offset: 5px;
    }

    now we got the ugly outline by navigation with mouse !
    you can see here a manually set tab navigation with only focus-visible settings. Click a link to see that the states are not influenced.
    https://guenterweber.com/

    #1485548
    klick-design-rbh
    Participant

    Hello support team,

    I have set up a new website and I am having some problems implementing the desired layout.

    When I go to a portfolio entry via the search page, I get a standard portfolio page. Is there a way to display this page like an AJAX portfolio?

    Here is my page:

Viewing 30 results - 1 through 30 (of 23,472 total)