Viewing 30 results - 1 through 30 (of 142,703 total)
  • Author
    Search Results
  • #1495254

    Hey dreyerjm,

    Thank you for the inquiry.

    Try adding this code in the Quick CSS field.

    #top .av-equal-height-column .avia-button-wrap {
        position: absolute;
        bottom: 0;
        width: 100%;
    }
    
    #top .av-equal-height-column {
        padding-bottom: 50px;
    }
    

    You can also replace av-equal-height-column with a custom css class name if you want this applied only to specific columns.

    https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Result:

    q3F7rml.md.png

    Best regards,
    Ismael

    #1495250
    Brad
    Participant

    Hello,

    The desktop version of our site uses Roboto for the main menu and submenu items, but the burger menu on mobile is showing Playfair Display, which is what we use for headings. I’ve tried adjusting various elements, but I can’t seem to find the solution to make the burger menu fonts the same as the regular main menu/submenu.

    Thank you.

    • This topic was modified 5 hours, 5 minutes ago by Brad. Reason: added clarity
    #1495248

    In reply to: Make the rows closer

    Hey dreyerjm,
    Try this css in your Quick CSS field in the theme options:

    body #intro .column-top-margin {
        margin-top: 20px;
    }

    Best regards,
    Mike

    #1495242
    dreyerjm
    Participant

    Hi, how would i get my columns to all line up uniform – picture at the top and button at the bottom.

    #1495225

    Thanks again Guenni!

    The issue is resolved, using your first piece of code and code I found here:

    The z-index rules you suggested didn’t make a difference.

    In the end, I made the PNG unclickable with your code and made it the same color as the overlay, using this code:

    .av-burger-overlay-active .logo > a {
      pointer-events: none;
    }
    
    .av-burger-overlay-active .logo > a {
      overflow: hidden;
      filter: drop-shadow(0px 1000px 0 #151515);
      transform: translateY(-1000px);
    }

    Thanks alot!
    This topic can be marked as resolved.

    Best regards,
    Maarten

    #1495213

    Hi,

    Please read this reply again, that is what we need. If you don’t know where to locate server error logs, then your hosting provider should be able to help you out with that.

    Best regards,
    Rikard

    #1495195

    Dear @Guenni007,

    Thank you so much for all the effort you put in your answer!

    Only, I think I have not been clear enough in describing the issue:
    I do NOT want the logo to be on top of the menu overlay. I want it to be under the overlay.
    The problem is, when I change the z-index: 101 rule, the logo isn’t clickable anymore when the overlay is NOT activated.

    Please let me know if I should elaborate more and sorry for the effort you made.
    Thanks so much!

    the classes (yes two classes here – only because i like to show both on the same page) are
    av-gallery-sticky-scroll and besides
    Thats all.

    PS : on that code – you see that i manage the amount of thumb columns by pure css. Because i like to rule it differently on small screens and orientation – as you can see at the bottom of the snippet.:

    @media only screen and (min-width: 768px) and (orientation: portrait) {
      #top .avia-gallery.av-gallery-sticky-scroll.besides .avia-gallery-thumb {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    on mobile devices with small screens – ( iPhone etc. ) this behaviour makes no sense – not only because of missing hover style …

    #1495158

    first – your logo is already on top with that z-index of 101. But the logo could not be seen due to that dark overlay background. Not enough contrast. – you see it if you set a background-color for it

    .logo.avia-standard-logo {
      background-color: #d5d9d3
    }

    so – my first thought is to replace that png by a svg logo – where you can change the fill color by the status of the hamburger open or not.

    e.g. take this svg instead for logo: https://webers-testseite.de/logo-femke-boschker.svg

    and set for the change :

    svg .fb {
      transition: all 0.3s linear;
    }
    .av-burger-overlay-active .fb {
      fill: #FFF;
    }

    ____________

    Or: why don’t you place an image (your logo image) inside the menu?
    you can do that replacing the home menu-item or add an additional home menu item and replace that:

    for navigation label you put in a standard img tag
    <img class="avia_image" src="https://www.maartenwebsites.nl/dev-femke/wp-content/uploads/2026/02/logo-femke-boschker-scaled.png" />

    PS: because you do not need to differ here between burger-menu and desktop text menu – you do not need that extra class.

    PPS: maybe you use in this case a white alternative logo.

    #1495147

    Thanks again, I worked with Claude to get this script I could drop in the child theme functions file, so I don’t have to copy any of the files to the child theme — lmk if you think it’s a problem. With the script and css below I got everything looking and working as it was, but now with “buttons”. After all that work, I’m wondering (and should’ve asked earlier): Do you even agree the sorting items as links were an accessibility issue? If it all looks good to you, feel free to close this thread.

    /* JavaScript to convert sorting links to buttons */
    add_action('wp_footer', 'child_masonry_links_to_buttons', 999);
    function child_masonry_links_to_buttons() {
        ?>
        <script>
        jQuery(document).ready(function($) {
            // Convert all masonry sort links to buttons
            $('.av-masonry-sort a[data-filter]').each(function() {
                var $link = $(this);
                var $button = $('<button type="button"></button>')
                    .attr('data-filter', $link.data('filter'))
                    .attr('class', $link.attr('class'))
                    .html($link.html());
                
                $link.replaceWith($button);
            });
            
            // Re-bind click events to buttons
            $('.av-masonry-sort').off('click', 'a').on('click', 'button', function() {
                var current = $(this),
                    linktext = current.html(),
                    selector = current.data('filter'),
                    masonry = current.parents('.av-masonry').eq(0),
                    container = masonry.find('.av-masonry-container').eq(0),
                    links = masonry.find('.av-masonry-sort button'),
                    activeCat = masonry.find('.av-current-sort-title');
    
                links.removeClass('active_sort');
                current.addClass('active_sort');
                container.attr('id', 'masonry_id_' + selector);
    
                if(activeCat.length) {
                    activeCat.html(linktext);
                }
    
                // Trigger isotope filtering
                var filters = selector ? {filter: '.'+selector} : {};
                filters['layoutMode'] = 'packery';
                filters['packery'] = {gutter:0};
                filters['percentPosition'] = true;
                filters['itemSelector'] = "a.isotope-item, div.isotope-item";
                filters['originLeft'] = $('body').hasClass('rtl') ? false : true;
    
                container.isotope(filters);
                
                setTimeout(function() { $(window).trigger('debouncedresize'); }, 500);
                return false;
            });
        });
        </script>
        <?php
    }
    /* sorting menu styling accessible buttons */
    .main_color .av-sort-by-term button {
        border: none;
        color: #fff;
        background: #0076a8;
        padding: 6px 15px 8px;
        text-transform: capitalize;
        font-size: 15px;
    	margin: 3px 3px 0 0;
      	font-family: 'sarabun',Helvetica,Arial,sans-serif;
    }
    .main_color .av-sort-by-term button:hover {
        background: #b6bd00;
    	transition: .25s;
    }
    .main_color .av-sort-by-term button.active_sort {
        color: #fff;
    	background: #b6bd00;
    }
    #1495129
    pelgrimrat
    Participant

    Dear people at the support forum,
    I have an issue I need your help with:
    A website I am creating is using a burger menu (also on big screens) and when activated, the website logo stays on top of the menu overlay instead of being covered by the overlay like the rest of the page.
    Website (temporary domain):

    I know this issue is created because I am using this code in the customizer:

    #top div .logo {
        z-index: 101;
        position: relative;
    }

    This code is necessary because I am using a custom layout for the header:
    menu icon left – logo middle – Instagram icon right.
    When I remove the z-index: 101 rule, the logo isn’t clickable anymore in normal circumstances (burger menu overlay not activated).

    So, is there a possibility to move the logo underneath the burger menu overlay, without loosing the normal functionality of the logo when the overlay is not active?

    This is the CSS code I use for the header layout:

    #top div .logo {
        z-index: 101;
        position: relative;}
    
    .responsive #top #wrap_all .main_menu {
        display: flex !important;}
    
    #top .main_menu, 
    #top .avia-menu {
      width: 100%;}
    
    #avia-menu #menu-item-search {
      position: absolute;
      right: 0;
      left: auto;}
    
    #top #wrap_all .av-hamburger-inner {
      display:block;
      top: 0;
      margin-top: 4px;}
    
    .html_header_top #top #wrap_all .av_logo_right #header_main .logo {
      position: relative;
      left: 50%;
      right: auto;
      margin-left: unset;
      margin-right: unset;
      transform: translateX(-50%);
      width: auto;}
    
    .responsive #top #wrap_all  .main_menu {
      width: 100%;
      display: flex !important;
      flex-flow: row nowrap;
      justify-content: space-between;
      height: inherit;}
    
    #top #wrap_all .menu-item-avia-special {
      display: block ;}
    
    .responsive #top #wrap_all #header .main_menu ul.social_bookmarks {
        display: flex;}
    
    #top #wrap_all .main_menu ul.social_bookmarks li a {
      height: 30px;}
    
    #top .main_menu .social_bookmarks li {
      width:40px;
      margin-left:5px;}
    
    @media (max-width: 767px) {
    	#top .main_menu .social_bookmarks li {
    	margin-top: -5px;}
    }
    
    #top .main_menu .social_bookmarks li.avia-svg-icon img[is-svg-img="true"],
    #top .main_menu .social_bookmarks li.avia-svg-icon svg:first-child {
      height:1.1em;
      width: auto;
      margin-top: 4px !important;}
    
    @media and (max-width: 767px) {
      .responsive #top #wrap_all .container {
        width: 95%;
        max-width: 95%;}
    
      .html_header_top #top #wrap_all .av_logo_right #header_main .logo {
        max-width: 200px;
        transform: translateX(-57%);  /* depends on how many social icons are present */ }
    }
    
    #top #wrap_all .social_bookmarks li a {
    width: 40px!important; 
    line-height: 40px!important; 
    min-height: 40px!important; 
    font-size: 26px!important;}
    
    #top #wrap_all .social_bookmarks li {
    height: 40px!important; 
    width: 60px!important;}
    
    #top #wrap_all .social_bookmarks {
      height: 60px!important;}
    
    #top #wrap_all .social_bookmarks, #top #wrap_all .social_bookmarks a, #top #wrap_all .social_bookmarks li {
    	    margin-right: -16px;}
    
    .social_bookmarks > li:hover > a {
           color: #ffffff !important;
     background: #1e251b !important;}
    
    .social_bookmarks a:visited {
        color: #1e251b !important;
        background: #ffffff !important;}

    Your help will be greatly appreciated!

    #1495115

    Hi,

    Thank you for the update.

    Try to add the following css code to ensure that the video covers the entire color section container.

    #top .av-video-slide iframe, #top .av-video-slide embed, #top .av-video-slide object, #top .av-video-slide video {
        object-fit: cover;
    }

    Best regards,
    Ismael

    #1495114

    Hi,

    Thank you for the update.

    To hide the header search widget on mobile, add this css code at the bottom of the previous modifications:

    @media only screen and (max-width: 767px) {
        #top #header_main .widget_product_search.widget {
            display: none;
        }
    }

    Best regards,
    Ismael

    Hi,

    There is no icon specific to Upwork, but you can add one using the Iconfont Manager. Please check this documentation.

    https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options
    https://kriesi.at/documentation/enfold/icon/

    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

    #1495095

    Meanwhile i could solve this.
    Text is visible inside the block.

    BUT when i click on it, it opens the background image which is the blue color. How can i change the url link for this one specific block? or deactivate the lightbox here? This is the code i used for:

    .referenzen  .grid-entry  .inner-entry {  overflow: hidden !important}
    
    .referenzen .grid-content {
      display:flex;
      flex-flow: column nowrap;
      justify-content: space-around;
      position: absolute;
      top: 0%;
      left: 0%;
      width: 100%;
      height: 100%;
      padding: 10px;
      background: #1b2640 !important;
      z-index: 0;
      text-align:center;
      pointer-events: none;
    }
    
    .referenzen .grid-content * {  background: transparent !important; }
    .referenzen .image-overlay {  display: none !important; }
    .referenzen .grid-content .avia-arrow { display: none; }
    
    .referenzen .grid-entry-excerpt { font-size: 15px!important;  font-style: normal!important;  margin-bottom: -2px; color:#ffffff !important;  font-family: ffclanproregular !important; }
    
    
    • This reply was modified 4 days, 18 hours ago by xeovision.
    #1495087

    but you have seen on top left – the project settings ?

    That page offers you the option for the advanced Layerslider Project.
    On layout there is the option to have a popup slider.

    You can choose the position and the dimension; you can have that popup open automatically – etc.
    or in your case : open by click
    enter a trigger ID or trigger class :

    Enter a CSS selector to trigger the Popup when clicking a target element. Use a dot for class (e.g., .popup-trigger) or a hashtag for ID (e.g., #popup-button). The Popup will toggle open/close with repeated clicks. Leave blank if no trigger is needed.

    next hint: if you like to have the chance to reopen the popup on another click to that button – scroll down again to Repeat Control:
    and uncheck “prevent from reopening”.

    Depending on your settings, the same Popup can be displayed in multiple times without reloading the page. Such example would be when you use a scroll trigger and the user scrolls to that location a number of times. Enabling this option will prevent opening this Popup consequently.

    PS: do not forget before you leave the layerslider dashboard – to save and publish with these popup settings.

    now link on your page a button to only # but give the custom-id (or custom class) to that button element: popup-button !!!

    Do not link to the trigger ID (or class) just fill in the trigger ID or class on advanced tab – developer settings.

    PPS: do not forget to place the layerslider to that page ;)

    see: https://webers-testseite.de/advanced-layerslider/

    • This reply was modified 5 days, 5 hours ago by Guenni007.

    Hi Mike! Yes, that is the layout I was going for, but as you saw we ran into some problems, and then also I found out that lazy load has not yet been added to the performance settings of gallery element, and since we are having some bandwidth issues, I returned to Masonry block. I actually would prefer the “hero” photo of Gallery on top with thumbnails below, and the hero to be sticky as user scrolls through thumbnails because sometimes there can be 60-90 photos in one gallery. I would also need to figure out how to lazy load it…

    Thanks!
    Rob

    #1495063

    Testimonials worked, but there is still a gray bar on top and bottom of this page header only: https://elitejetclub.com/join-the-club/

    on mobile view

    #1495060
    GaWi
    Participant

    Hi,
    I have many Tables with 7 rows so I have to put them in Tab Sections. Desktop look fine. Creative Studio Demo.
    But mobile – I know that it is quite tricky – the table is no swipable to the right. Just a little bit, than it swipes into the next Tab Section.
    I have already “…Tabelle scrollbar machen”.
    Is there perhaps a resolution, that makes the table nice and swipable in the tab section?
    Greets Gabi

    #1495041

    Hi,

    Thank you for the inquiry.

    We couldn’t find the section described in your screenshot. Regarding the header background on mobile view, please try to add the following css code.

    @media only screen and (max-width: 767px) {
        #top #header:not(.av_header_transparency) .header_bg {
            background-color: #191919 !important;
        }
    }

    To make the testimonial images bigger, please add this:

    .avia-testimonial-image {
        margin: 0 20px 0 0;
        width: 160px;
        height: 160px;
        border-radius: 100px;
    }

    Let us know the result.
    Best regards,
    Ismael

    #1495037

    Hi,

    Sorry about that. It was indeed the css modification that caused the search field in the sidebar to be repositioned. Please edit the previously suggested css code and replace it with:

    #top #header_main .widget_product_search.widget {
        position: absolute;
        min-width: 312px;
        left: 50%;
        transform: translateX(-80%);
        z-index: 100;
        top: 30%;
    }
    

    Let us know how it goes.

    Best regards,
    Ismael

    #1495036

    Hi Rikard,
    OK.

    But is the code correct?

    #top ui-datepicker-header ui-widget-header ui-helper-clearfix ui-corner-all .ui-icon,
    .ui-widget-content .ui-icon {
    background-image: url(“/wp-content/plugins/yith-woocommerce-booking-premium/assets/css/images/ui-icons_444444_256x240.png”);
    }

    Thank you

    #1495028
    zemag33
    Participant

    Hello,

    I have just purchased and installed a new ENFOLD theme and I have received a message from my host indicating a vulnerability alert.

    I have also received the same feedback on other sites created with ENFOLD.

    ——-
    Vulnerability analysis
    1Alert detected

    We automatically perform daily scans and scans whenever a new extension or theme is installed, using the WPScan vulnerability database. Learn more
    Vulnerability alert

    Detected vulnerabilities are sent by email to

    1 warning
    Enfold
    This theme is active. Please activate another theme.

    ——-

    Thank you for your help.

    Kind regards,

    Christophe

    #1495011

    Hey condonp,

    Thank you for the inquiry.

    You can use the following css code to adjust the size of the slider arrows. Please fine-tune the css values as needed.

    #top .avia-smallarrow-slider .avia-slideshow-arrows a {
        height: 42px;
        line-height: 42px;
        top: 0;
    }
    
    #top .avia-smallarrow-slider:not(.av-slideshow-ui) .avia-slideshow-arrows a, #top .avia-smallarrow-slider.av-slideshow-ui .avia-slideshow-arrows.av-visible-prev a.prev-slide, #top .avia-smallarrow-slider.av-slideshow-ui .avia-slideshow-arrows.av-visible-next a.next-slide {
        width: 42px !important;
    }
    
    #top .avia-slideshow-arrows a.prev-slide {
        right: 50px;
    }
    
    #top .avia-smallarrow-slider .avia-slideshow-arrows a.avia-svg-icon svg:first-child, #top .avia-smallarrow-slider .avia-slideshow-arrows a.avia-svg-icon img[is-svg-img="true"] {
        height: 30px;
        width: auto;
        margin-top: 8px;
    }

    q91CeMg.png

    Best regards,
    Ismael

    #1495005
    bemodesign
    Participant

    The video has a gray bar on the top and bottom and I can’t see how to remove this. Can you take a look ? It is on this page and only on mobile view:

    https://drive.google.com/file/d/1Ytqr21AsRD5dFGl2F8h3UPka0qE6fzHv/view?usp=sharing

    and also on mobile, if I want the menu bar to be black when people scroll, where is best place to change this? Because on desktop it is Black header, but on mobile, it is white.

    thanks!

    #1495003

    Hi Rikard,
    My apologies for not explaining well.
    Is there a way to pull it from Enfold jqueries?

    Or is the css code wrong ?
    #top ui-datepicker-header ui-widget-header ui-helper-clearfix ui-corner-all .ui-icon,
    .ui-widget-content .ui-icon {
    background-image: url(“/wp-content/plugins/yith-woocommerce-booking-premium/assets/css/images/ui-icons_444444_256x240.png”);
    }

    Xavier

    #1494999

    Thank you!

    It worked!
    But something crazy happened at the same time after I added that CSS to the wusicj CSS inside Enfold settings.
    The search feature that worked fine in the sidebar is now broken.
    https://snipboard.io/JywQFg.jpg
    https://snipboard.io/YQ8Kqy.jpg

    The sidebar search feature works fine when I delete the CSS, but the menu-top search widget goes back to the top like yesterday…
    https://snipboard.io/HATeMP.jpg

    Help me ;)
    Leo

    Hi Ismael

    Thank you for coming back.

    Nothing special (standard plugins like staging, Yoast, etc.) and only custom CSS:

    /*Menue Button*/
    /*#top #wrap_all .header_color li#menu-item-10312.av-menu-button-colored > a .avia-menu-text {background-color:#FA7D19;}*/

    #top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text {background-color:#FA7D19 !important; border-color:#FA7D19 !important;}

    #menu-item-10312 .avia-menu-text {background-color:#FA7D19 !important; border-color:#FA7D19 !important;}

    /*Desktop*/
    @media only screen and (max-width: 1920px) {
    .indicates-required {display:none !important;}
    .mc-field-group label {display:none !important;}
    .mc-field-group {clear:none !important; width:32% !important; float:left !important; margin-right:13px;}
    .mc-field-group input {font-size:16px !important; padding:13px !important;}
    #mc_embed_signup .button {background-color:#2d5c88 !important; border-color:#0b3a66 !important; width:32% !important;border-radius:2px !important; height:45px !important; line-height:23px !important;}
    #mc_embed_signup .button:hover {background-color:#3d71a1 !important; border-color:#1b5080 !important;}
    }

    /*Mobil – Tablet*/
    @media only screen and (max-width: 768px) {
    .mc-field-group input {margin-bottom:0px !important;}
    .mc-field-group {clear:none !important; width:100% !important; float:left !important; margin-right:13px; margin-bottom:0px !important;}
    #mc_embed_signup .button {width:100% !important;}
    }

    /*News Übersicht Seite – Datum deaktiviert*/
    .html_elegant-blog .avia-content-slider .slide-meta {display:none !important;}
    /*Zwei Border Linien Blog Seite deaktiviert*/
    .html_elegant-blog #top .post-entry .post-meta-infos {display:none !important;}

    #top .av-menu-button > a .avia-menu-text {border-radius: 20px !important;}

    /*P-Tag move font size*/
    .p-move-h2 {font-size:40px !important; font-weight:bold;}

    /* CSS Enfold-Mailchimp-Newsletter Input fields*/
    #top .avia_ajax_form.avia-mailchimp-form input[type=’text’] {
    background: #c4dff6;
    color: #00334e;
    }
    #top .avia_ajax_form.avia-mailchimp-form .required{
    display: none;
    }

    Any thoghts?

    Thank you.

    Philipp

    #1494965
    coldstreamer
    Participant

    Are you guys seeing multiple error messages on the posts and pages WP pages?

    Enfold: 7.1.3
    WordPress 6.9.1
    Chrome Browser 144.0.7559.133 (Official Build) (arm64)
    Safari Version 26.2 (21623.1.14.11.9)
    Vivaldi Version 7.8.3925.62 (Official Build) (arm64), Chromium Version 144.0.7559.167
    Firefox 147.0.2 (aarch64)
    Running on a Mac Mini M2 (Tahoe 26.2)

    Error Messages when opening Posts and Pages (but similar error seen on e.g. the Plugins page):

    Notice: WP_Styles::add(): The style with the handle “avia-module-audioplayer” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-blog” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-postslider” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-button” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-buttonrow” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-button-fullwidth” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-catalogue” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-comments” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-contact” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-slideshow” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-countdown” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-dynamic-field” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-gallery” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-maps” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-gridrow” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-heading” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-rotator” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-hr” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-icon” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-icon-circles” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-iconbox” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-icongrid” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-iconlist” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-image” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-image-diff” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-hotspot” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-sc-lottie-animation” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-magazine” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-masonry” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-siteloader” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-menu” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-notification” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-numbers” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-portfolio” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-post-metadata” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-progress-bar” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-promobox” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-sc-search” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-slideshow-accordion” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-slideshow-ls” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-social” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-tabsection” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-table” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-tabs” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-team” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-testimonials” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-timeline” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-toggles” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-video” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-audioplayer” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-chart-js” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-chart” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-contact” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-slideshow” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-countdown” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-gallery” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-gallery-hor” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-rotator” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-icon-circles” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-icongrid” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-iconlist” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-image-diff” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-hotspot” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-magazine” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-isotope” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-menu” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-notification” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-numbers” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-portfolio” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-progress-bar” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-slideshow-video” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-slideshow-accordion” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-slideshow-ls” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-tabsection” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-tabs” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-testimonials” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-timeline” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-toggles” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-video” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia_analytics_js” was enqueued with dependencies that are not registered: avia_builder_js. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    +++

    Here’s Gemini’s Research result of looking at the functions.php code:

    The error in this code is a logic and implementation mismatch related to how the WordPress function wp_trigger_error() handles message formatting.
    Specifically, there are two issues in the final line:
    wp_trigger_error( ”, $message );
    1. Redundant Formatting (The Main Issue)
    In WordPress 6.4+, wp_trigger_error() was introduced to standardize how “Doing it wrong” and “Deprecated” notices are handled.
    Inside wp_trigger_error(), WordPress automatically prepends the text:
    “Function %s was called incorrectly…”
    However, your code manually builds that exact same string in the lines above:
    $message = sprintf(
    __( ‘Function %1$s was called incorrectly. %2$s %3$s’ ),
    $function_name,
    $message,
    $version
    );
    The Result: If this code runs, the error output will look like a stuttering mess:

    “Function was called incorrectly. Function my_function_name was called incorrectly. [Actual Message] [Version]”

    2. Empty First Parameter
    The first parameter of wp_trigger_error( $function_name, $message ) is intended to be the name of the function that was called incorrectly. By passing an empty string (”), you are preventing wp_trigger_error from correctly identifying the culprit in its own automated prefix.

    +++

    What I tried:

    Enfold > Performance > Disabled all file merging and compression (Enfold > Performance), cleared all caches (very few plugins and no cacheing on the website).
    Enfold > Performance > Unused features > changed to ‘Always load all elements’
    Checked for /wp-content/uploads/dynamic_avia and its permissions.
    Temp. emptying of dynamic_avia reset the website visually.

    These are warnings, so the website seems to work OK, but it looks like it needs to be fixed elsewhere (loading of avia-layout).

    Hey Roberta,

    Thank you for the inquiry.

    The toggles seem to be working correctly when we checked. Did you figure out the issue? Please see this short clip showing the toggles.

    Best regards,
    Ismael

Viewing 30 results - 1 through 30 (of 142,703 total)