Viewing 30 results - 1 through 30 (of 288 total)
  • Author
    Search Results
  • Roberta
    Participant

    Hi Enfold Support Team,

    We’re running into an issue where the 2025 accordion on this page is not working:
    https://wearesrna.org/shaping-the-future/research/funded-research-publications/

    The toggle items don’t show at all in both the Avia preview and the front-end, with no clear trigger. It also seems random which toggles disappear.

    What we’ve tried so far (no change):
    • Checked whether special characters were causing issues (removed/adjusted)
    • Reviewed the content inside the toggles for anything unusual
    • Rebuilt the accordion and created a brand-new one
    • Still seeing the same behavior (missing toggles)

    Could you please take a look on your side? We’d really appreciate it, as this section is currently blocking updates.

    Thank you in advance.

    Best,
    Roberta

    #1492336

    Hey formvermittlung,

    Thank you for the inquiry.

    The theme should be fully accessible, allowing navigation using keyboards or tabbing. It also has dedicated accessibility support in Enfold > Theme Extensions > Accessibility. Please read the notes in the options panel. Some features, such as “Skip to content”, are not available by default but can be easily added using accessibility plugins like the ones listed below and element animations can be disabled if necessary.

    https://wordpress.org/plugins/search/accessibility/

    Hope this helps.

    Best regards,
    Ismael

    #1490669

    Hey Heather,
    Please see this article about purchasing extended support.
    As for your search issue, please disable all of your plugins and then check.
    The Enfold theme has had a known issue with the Advanced Woo Search plugin, particularly concerning the display and functionality of the search bar in the main menu. A reported issue involves the search bar appearing briefly and then disappearing when integrated via the “Shortcode in Menus” plugin. Please see this thread.
    Another possibility is your Autoptimize plugin forcing the “display:none” instead of allowing the results to show. Autoptimize often causes errors like this. Nonetheless once you extend your support we can review further.
    Best regards,
    Mike

    #1484899

    Hey syberknight-tb,
    Unfortunately, we don’t have an element that will achieve this for you in the theme, while there are many plugins that may work for you, when I check some of them they don’t quite match, but if you spend more time testing each one you may find one.
    I was able to create something that may work for you using javascript and HTML in a shortcode, on mobile it shows 1 1/2 team member cards with prev & next arrows and loop when you click to the end:
    Screen Shot 2025 05 31 at 9.41.31 AM
    on tablet it shows 2 1/2 cards:
    Screen Shot 2025 05 31 at 9.43.47 AM
    and on desktop it shows 3 1/2 cards:
    Screen Shot 2025 05 31 at 9.45.40 AM
    As is it holds 8 cards, you can add more or have less, you will need to edit the HTML to add your images and text, hopefully you will be able to do this:
    Screen Shot 2025 05 31 at 9.50.45 AM
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor, If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    use wpcode php snippet and activate
    and ensure that it is activated, then add the code below and save.

    function team_carousel_shortcode() {
        ob_start(); ?>
        
        <div class="carousel-container">
            <button id="prevBtn">←</button>
            <div class="carousel">
                <div class="carousel-track">
                    <!-- START: Team Members -->
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 1"><p>Member 1<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 2"><p>Member 2<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 3"><p>Member 3<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 4"><p>Member 4<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 5"><p>Member 5<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 6"><p>Member 6<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 7"><p>Member 7<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 8"><p>Member 8<br>A short bio for the team member</p></div>
            <!-- END: Team Members -->
                </div>
            </div>
            <button id="nextBtn">→</button>
        </div>
    
        <style>
        .carousel-container {
            position: relative;
            width: 80%;
            overflow: visible;
            margin: auto;
        }
    
        .carousel {
            overflow: hidden;
            width: 100%;
        }
    
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
    
        .card {
            box-sizing: border-box;
            padding: 10px;
            background: #e8e8e8;
            margin: 5px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
    
        @media only screen and (max-width: 767px) { 
            .card { flex: 0 0 62%; }
        }
    
        @media only screen and (min-width: 768px) and (max-width: 1800px) { 
            .card { flex: 0 0 38%; }
        }
    
        @media only screen and (min-width: 1801px) { 
            .card { flex: 0 0 28%; }
        }
    
        .card p {
            color: #000;
         }
    	.card img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 100%;
        }
    
        #nextBtn, #prevBtn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #000;
            border: 2px solid #000;
            padding: 10px;
            cursor: pointer;
            z-index: 10;
        }
    
        #prevBtn { left: -50px; }
        #nextBtn { right: -50px; }
        </style>
    
        <script>
        document.addEventListener('DOMContentLoaded', function () {
            const track = document.querySelector('.carousel-track');
            const cards = document.querySelectorAll('.card');
            const prevBtn = document.getElementById('prevBtn');
            const nextBtn = document.getElementById('nextBtn');
    
            let currentIndex = 0;
            let cardWidth = cards[0].offsetWidth + 20;
    
            function updateCarousel() {
                const shift = currentIndex * cardWidth;
                track.style.transform = translateX(-${shift}px);
            }
    
            function moveToNext() {
                currentIndex++;
                if (currentIndex >= cards.length) {
                    currentIndex = 0;
                }
                updateCarousel();
            }
    
            function moveToPrev() {
                currentIndex--;
                if (currentIndex < 0) {
                    currentIndex = cards.length - 1;
                }
                updateCarousel();
            }
    
            nextBtn.addEventListener('click', moveToNext);
            prevBtn.addEventListener('click', moveToPrev);
    
            window.addEventListener('resize', () => {
                cardWidth = cards[0].offsetWidth + 20;
                updateCarousel();
            });
        });
        </script>
    
        <?php
        return do_shortcode(ob_get_clean());
    }
    add_shortcode('team_carousel', 'team_carousel_shortcode');

    Then add this shortcode in a code block element on your page: [team_carousel]
    Feel free to adjust the colors in the css in the code.

    Best regards,
    Mike

    #1483377

    Topic: Missing dependencies

    in forum Enfold
    ldgservice
    Participant

    Good morning,
    I have been experiencing issues with my website running slowly, so I contacted my hosting provider, Aruba. They installed a plugin called “Query Monitor,” and according to the plugin’s report, there appear to be missing dependencies among the Enfold theme’s stylesheets.
    Below are the messages from the report.
    I remain confident in your support and assistance.
    Thank you.

    “Dipendenze mancanti avia-module-audioplayer http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/audio-player/audio-player.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-blog http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog/blog.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-postslider http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-button http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons/buttons.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-buttonrow http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-button-fullwidth http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-catalogue http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/catalogue/catalogue.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-comments http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/comments/comments.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-contact http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contact/contact.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-slideshow http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.css avia-layout (mancante) avia-module-gallery-hor, avia-module-slideshow-contentpartner, avia-module-slideshow-feature-image, avia-module-slideshow-fullscreen, avia-module-slideshow-fullsize 7.1
    Dipendenze mancanti avia-module-slideshow-contentpartner http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contentslider/contentslider.css avia-module-slideshow 7.1
    Dipendenze mancanti avia-module-countdown http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/countdown/countdown.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-dynamic-field http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/dynamic_field/dynamic_field.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-gallery http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-gallery-hor http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.css avia-module-slideshow 7.1
    Dipendenze mancanti avia-module-maps http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/google_maps/google_maps.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-gridrow http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/grid_row/grid_row.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-heading http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/heading/heading.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-rotator http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-hr http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/hr/hr.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-icon http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon/icon.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-icon-circles http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon_circles/icon_circles.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-iconbox http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconbox/iconbox.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-icongrid http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icongrid/icongrid.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-iconlist http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconlist/iconlist.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-image http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image/image.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-image-diff http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image_diff/image_diff.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-hotspot http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-sc-lottie-animation http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/lottie_animation/lottie_animation.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-magazine http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/magazine/magazine.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-masonry http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-siteloader http://www.ldgservice.it wp-content/themes/enfold/css/avia-snippet-site-preloader.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-menu http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/menu/menu.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-notification http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/notification/notification.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-numbers http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/numbers/numbers.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-portfolio http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-post-metadata http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/post_metadata/post_metadata.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-progress-bar http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/progressbar/progressbar.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-promobox http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/promobox/promobox.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-sc-search http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/search/search.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-slideshow-accordion http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-slideshow-feature-image http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.css avia-module-slideshow 7.1
    Dipendenze mancanti avia-module-slideshow-fullsize http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.css avia-module-slideshow 7.1
    Dipendenze mancanti avia-module-slideshow-fullscreen http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.css avia-module-slideshow 7.1
    Dipendenze mancanti avia-module-slideshow-ls http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-social http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/social_share/social_share.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-tabsection http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-table http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/table/table.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-tabs http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tabs/tabs.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-team http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/team/team.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-testimonials http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/testimonials/testimonials.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-timeline http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/timeline/timeline.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-toggles http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/toggles/toggles.css avia-layout (mancante) 7.1
    Dipendenze mancanti avia-module-video http://www.ldgservice.it wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/video/video.css avia-layout (mancante)”

    #1478545

    Hola Ismael

    1/ yep i relaunched google consol inspection after i removed the beehiive newsletter CCS link, i also unchecked few option in enfold them that were unnecessary according to the thread i have read (query, css etc ..) in the performance page. It seems the beehiive error eventually disappeared after new test.

    2/ errors are various , seems to concern an avia format (despite avia content is checked in yoast setting)

    my contact page is the only one to have soft 404 error and google can’t access it. It has 3 errors

    https://www.domain.ch/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/heading/heading.min.css?ver=6.0.9
    https://www.domain.ch/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon_circles/icon_circles.min.css?ver=6.0.9

    + the usual captcha icon robot text error i develop at the end of the message

    for the rest of the pages , errors are. :

    https://www.domain.ch/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon_circles/icon_circles.min.css?ver=6.0.9

    https://www.domain.ch/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons/buttons.min.css?ver=6.0.9

    https://www.domain.ch/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/menu/menu.min.css?ver=6.0.9

    https://www.domain.chh/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/grid_row/grid_row.min.css?ver=6.0.9

    https://www.domain.ch/wp-content/themes/enfold/css/base.min.css?ver=6.0.9

    https://www.domain.ch/wp-content/themes/enfold/css/grid.min.css?ver=6.0.9

    https://www.domain.ch/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/hr/hr.min.css?ver=6.0.9

    https://www.domain.ch/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconbox/iconbox.min.css?ver=6.0.9

    https://www.domain.ch/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/magazine/magazine.min.css?ver=6.0.9

    https://www.domain.ch/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons/buttons.min.css?ver=6.0.9

    ————-

    arecaptacha logo robot.txt :

    googlebot is blocked by robot.txt file : https://www.gstatic.com/recaptcha/api2/logo_48.png

    when you open robot text file you get this :

    User-agent: *
    Allow: /_/aihub_pod/
    Allow: /_/alkali-learn/
    Allow: /_/apps-viewer/
    Allow: /_/atari/
    Allow: /_/boq/
    Allow: /_/boq-play/
    Allow: /_/boutique/
    Allow: /_/buganizer/
    Allow: /_/compare-banking/
    Allow: /_/compare-insurance/
    Allow: /_/fi/
    Allow: /_/fonts/
    Allow: /_/mss/boq-bard-web/
    Allow: /_/mss/boq-chrome-cloudcast/
    Allow: /_/mss/boq-cloud-web3-portal/
    Allow: /_/mss/boq-discover-labs/
    Allow: /_/mss/boq-geo/
    Allow: /_/mss/boq-makersuite/
    Allow: /_/mss/boq-nbu-monetization/
    Allow: /_/mss/boq-search/
    Allow: /_/mss/boq-search-engagement-post/
    Allow: /_/mss/boq-travel/
    Allow: /_/mss/boq-identity/
    Allow: /_/pantheon/
    Allow: /_/pantheon-platform/
    Allow: /_/play/
    Allow: /_/pog/
    Allow: /_/cloudsourcetools/
    Allow: /_/devopsconsole/
    Allow: /_/tfhub/
    Allow: /_/transparencyreport/
    Allow: /_/gstore/
    Allow: /_/ain/_/js/
    Allow: /ac/
    Allow: /actions/news/rss/
    Allow: /ads/learn/
    Allow: /ads/local/
    Allow: /ads/gpa/vidgen/
    Allow: /ads/research/
    Allow: /ads/ubaq/
    Allow: /aihub/tfhub/
    Allow: /alkali/
    Allow: /amphtml/stamp/ucp/post-testing/
    Allow: /android/market/
    Allow: /android/market_images/
    Allow: /atari/images/public/
    Allow: /audio_news/
    Allow: /bfe/apps/website/
    Allow: /boutique/sitemaps/
    Allow: /compare/
    Allow: /chrome/crlset/
    Allow: /chrome/webstore/images/
    Allow: /cloud-launcher/sitemap/
    Allow: /cloudsourcetools/images/
    Allow: /commercesearch/images/
    Allow: /communities/sitemap/
    Allow: /copy-conductor/crawled/
    Allow: /covid19/mobility/
    Allow: /culturalinstitute/images/
    Allow: /culturalinstitute/sitemaps/
    Allow: /culturalinstitute/stella/
    Allow: /ct/log_list/
    Allow: /delight/
    Allow: /devopsconsole/images/
    Allow: /devrel-devsite/
    Allow: /docs/forms/social/
    Allow: /docs/socialmarkup/
    Allow: /dictionary/static/sitemaps/
    Allow: /droidguard/
    Allow: /earth/social/
    Allow: /enterprise-partner-search/sitemaps/
    Allow: /external_hosted/
    Allow: /flights/
    Allow: /flutter-canvaskit/
    Allow: /foodordering/
    Allow: /frommers/
    Allow: /gb/images/
    Allow: /glass/images/commerce/
    Allow: /gpay/social/
    Allow: /growth-ime/
    Allow: /gsx/
    Allow: /gtp/stir/
    Allow: /guidebooks/
    Allow: /GoogleInternetAuthority/
    Allow: /h5games_gamecenter/images/
    Allow: /healthricherkp/illustrations/
    Allow: /healthricherkp/cropped/
    Allow: /hex/
    Allow: /history/static/
    Allow: /identity/accountsettingsactivityweb/
    Allow: /identity/accountsettingssyaf/
    Allow: /images
    Allow: /inproduct_help/chatsupport/
    Allow: /lamda/images/
    Allow: /local/donut/
    Allow: /mapspro/
    Allow: /marketing-cms/
    Allow: /moderator/static/ux/
    Allow: /modern-formats-eng/ucp/framework_logging/
    Allow: /modern-formats-eng/ucp/*/client/
    Allow: /modern-formats-eng/ucp/*/csr/
    Allow: /modern-formats-eng/ucp/*/dev/
    Allow: /modern-formats-eng/ucp/static/framework_logging/
    Allow: /modern-formats-eng/ucp/static/*/client/
    Allow: /modern-formats-eng/ucp/static/*/csr/
    Allow: /modern-formats-eng/ucp/static/*/dev/
    Allow: /nbubumblebee/
    Allow: /og/
    Allow: /onebox/media/sports/logos/
    Allow: /onebox/media/sports/photos/soccer/wc2018/
    Allow: /onebox/sports/logos/
    Allow: /onebox/sports/logos/sports_types/png/
    Allow: /pagespeed/insights/ui/logo/
    Allow: /pantheon/
    Allow: /pantheon-platform/
    Allow: /patent-search/frontend/
    Allow: /pay/images/merchant_logos/
    Allow: /pay/images/program_logos/
    Allow: /paygo/
    Allow: /play/store/web/
    Allow: /play/surveys/serp/
    Allow: /podcasts/test-podcast/rss/
    Allow: /politics/e/sharing/
    Allow: /prettyearth/assets/
    Allow: /psb/udc/
    Allow: /s2/sitemaps/
    Allow: /search-ar-dev/
    Allow: /search-console/scfe/
    Allow: /shopping-content-api/product_images/
    Allow: /shopping/shoppingpage/casa/
    Allow: /shopstream/
    Allow: /sites/
    Allow: /sitemaps/
    Allow: /social/photosui/images/
    Allow: /social/photosui/sitemap/
    Allow: /stadia/gamers/
    Allow: /store/images/favicons/
    Allow: /subscriptions/
    Allow: /support/content/
    Allow: /system1/images/
    Allow: /travel-frontend/images/
    Allow: /finance/favicon/
    Allow: /travel-vacations/
    Allow: /touringbird/
    Allow: /trends/
    Allow: /trends_tpt/
    Allow: /trustedstores/images/
    Allow: /trustedstores/js/
    Allow: /tv/thumb/
    Allow: /ui/
    Allow: /vr/*
    Allow: /vsi/*.pdf$
    Allow: /wondermissive/interest/
    Allow: /youtube/fonts/
    Allow: /youtube/img/promos/
    Allow: /icons/
    Allow: /js/
    Allow: /ss/
    Allow: /*.js
    Allow: /*.css
    Allow: /*.svg
    Allow: /buyside-e2e-monitor/

    the strange thing is i dont find this in my yoast robot manager

    do you think Google captach might be a problem ?

    @mike – it is as mentioned just before head tag is closing. But i do not have it on any of my enfold installations even on those which are in combination with Yoast SEO.

    but nevertheless in combination with that “new” indexifembedded it is ok :
    https://developers.google.com/search/blog/2022/01/robots-meta-tag-indexifembedded

    #1463729

    Hey dp-beheer,
    Thanks for your question, the correct pagination url is /?avia-element-paging=2 this can not be changed to /page-2 as it would be a conflict with the WordPress pagination. I don’t see anything on the Pagination Best Practices page to point to a diffidence between /?avia-element-paging=2 and /page-2. Nonetheless, if you would like to request this pagination change, the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.

    Best regards,
    Mike

    #1463614
    dp-beheer
    Participant

    Hi Enfold,

    Today I received a message that told me that certain pages that use pagination are not indexed by Google because I put a canonical tag to the original page. So our /blog page has a canonical URL set, but for best practice the pagination parameters in the URL all should have their own canonical URL. We are currently using Yoast for our theme, that state that they do this automatically but it does not seem to work for the Avia Element.

    Question 1: How do I adjust this so that the avia elements are indexed correctly by Google?
    Question 2: Can I change the name of the element to just ‘page’ so instead of blog/?avia-element-paging=2 it could be come /blog/page-2?

    Looking forward to your response!

    Kind regards,
    Joost

    #1457357

    Hi,
    The WooCommerce Products by Attributes & Variations looks like it has a variation title field
    Enfold Support 6187
    which would be the easiest way, but make sure that you ask them if you can try it first, because some addons don’t work properly with Enfold. Some plugins have a free version on WordPress Plugins so I would also check there.
    As for the script I posted above, my variation in my screenshot looks different that yours so perhaps that is a issue, and your site has a javascript error in your Simple Custom CSS and JS fore the search form, try disabling it and check again
    document.getElementsByClassName('search-form')[0].innerHTML += '<input type="hidden" name="post_type" value="product">';

    Best regards,
    Mike

    #1451838

    Hi,

    Thank you for the update.

    The uploaded images are a little too big for the page or the slider. The rendered size of the slides is only 911x610px, but the uploaded images are twice the size (2240x1150px), which is too large. Please install an image compression tool and try to upload smaller images, perhaps half the current size. Also, ensure that the Enfold > Performance > Responsive Images and Lazy Loading > Responsive Images option is checked or enabled.

    // https://wordpress.org/plugins/search/image+compression/

    Best regards,
    Ismael

    Hi,
    In your opening post you write that your site lost some of it’s ranking, perhaps this is related to the Google helpful content updates, there was another on March 5.
    I’m not a SEO expert, but I have heard a lot of people talking about this on podcasts, perhaps adding a “latest post” from your blog on your homepage and adding weekly “helpful” posts will help your ranking. See Google’s documentation on Creating helpful, reliable, people-first content and then try working with a content writer to create content like this each week for you to post on your site. Also try to use the name of your city and state often, as I understand Google is looking for “local” content. You might also want to post the content on YouTube as it may help a lot.
    I checked your site on PageSpeed Insights and it scores well:
    Enfold_Support_5594.jpeg
    I don’t see any CORS errors.
    minified without merging is a good setting with cloudflare, as it also merges and double merging sometimes causes errors. But you can try merge and compress and see if it works better, but if you see errors then switch back.
    So you site looks good, I believe if you start adding “helpful” content weekly it will help you a lot.

    Best regards,
    Mike

    #1440364

    Topic: SearchWP

    in forum Enfold
    95mc
    Participant

    Hi

    I have buy SearchWP to find better the shop products. I have install de code to instead os the standard search engine.

    It do not works and the searchWP results page do not works too.
    Could you help me?

    Thanks advance,

    BR,

    Antonio.

    #1439864

    Hey strumpumpel,
    Unfortunately Enfold doesn’t have this feature, please check the plugins from the WordPress library, here is a good place to start.

    Best regards,
    Mike

    liuxuewu
    Participant

    The SEO plugin reports that some CSS and JS files don’t appear to be minified. I noticed that most of them are related to the Enford theme. I have already enabled the CSS and JS merge option in Theme Options > Performance, and I have also set up minification through Autoptimize. Why are there still a large number of uncompressed files?

    Some Javascript files don’t seem to be minified.
    https://wanbincell.com//wp-content/themes/enfold/js/avia-js.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/js/avia.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/js/shortcodes.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/audio-player/audio-player.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contact/contact.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/countdown/countdown.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon_circles/icon_circles.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icongrid/icongrid.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image_diff/image_diff.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/lottie_animation/lottie_animation.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/magazine/magazine.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/menu/menu.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/notification/notification.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/numbers/numbers.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow-video.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tabs/tabs.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/timeline/timeline.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/toggles/toggles.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/video/video.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/js/avia-snippet-hamburger-menu.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/js/avia-snippet-parallax.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/js/avia-snippet-fold-unfold.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/js/avia-snippet-header-reading-progress.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/js/avia-snippet-lightbox.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/js/avia-snippet-megamenu.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/js/avia-snippet-sticky-header.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/js/avia-snippet-footer-effects.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/js/avia-snippet-site-preloader.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/js/avia-snippet-widget.js?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-gutenberg/js/avia_blocks_front.js?ver=5.6.11
    JavaScript files appear in many places, including frameworks (like Bootstrap), themes and templates, and third-party plugins.

    We recommend tracking down where the un-minified JavaScript files come from

    There are server-side tools (including WordPress plugins) to automatically minify JavaScript files.
    Some CSS files don’t seem to be minified.
    https://wanbincell.com//wp-content/themes/enfold/css/grid.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/css/base.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/css/layout.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/audio-player/audio-player.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog/blog.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons/buttons.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/catalogue/catalogue.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/comments/comments.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contact/contact.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contentslider/contentslider.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/countdown/countdown.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/google_maps/google_maps.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/grid_row/grid_row.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/heading/heading.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/hr/hr.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon/icon.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon_circles/icon_circles.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconbox/iconbox.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icongrid/icongrid.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconlist/iconlist.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image/image.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image_diff/image_diff.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/lottie_animation/lottie_animation.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/magazine/magazine.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/css/avia-snippet-site-preloader.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/menu/menu.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/notification/notification.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/numbers/numbers.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/post_metadata/post_metadata.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/progressbar/progressbar.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/promobox/promobox.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/search/search.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/social_share/social_share.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/css/grid.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/css/base.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/css/layout.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/audio-player/audio-player.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog/blog.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons/buttons.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/comments/comments.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contact/contact.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contentslider/contentslider.css?ver=5.6.11
    https://wanbincell.com//wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/google_maps/google_maps.css?ver=5.6.11

    #1436326

    In reply to: SEO Analysis program

    Hi,

    What do you mean by “transition words”? Please provide a screenshot using platforms like Savvyify, Imgur or Dropbox. Are you using the Content Analysis feature?

    // https://yoast.com/research/real-time-content-analysis/

    Has Rank Math been verified to work properly with Enfold,

    While the AI feature of the RankMath plugin is not compatible with the Advance Layout Builder (ALB), the plugin’s analysis tool should still function properly with the builder. It should be able to check or verify that the focus keywords are included in the content created using the builder.

    Best regards,
    Ismael

    #1432557
    phil
    Guest

    Considering your theme for a client. I noticed though in support forum, there are questions that Avia Layout Builder not working with latest version of WordPress as per:

    https://kriesi.at/support/search/editing+pages+page+builder+not+working/?avia_filter_search=yes&avia_search_forums=66&avia_search_dates=6m&avia_search_include=no

    &

    Can you confirm what version WordPress works with your builder or shouldn’t it work with any version, latest or not? Like to be assured your builder is robust so can customize/edit Enfold for the client.

    Thanks & Regards,

    Phil

    #1427041

    In reply to: Autorespond email

    Hey neomazic,
    To see the Autoresponder option in the Enfold contact form element please look in the Backend option:
    Enfold_Support_4075.jpeg
    the mailchimp element doesn’t have these option as you need to do this in your mailchimp account.
    Please note that the contact form element is a basic contact form and has limited Autoresponder options, if you would like more option we recommend considering the Contact Form 7 plugin and it many addon plugins.

    Best regards,
    Mike

    #1425789

    The following is located in the WooCommerce -> Status Logs. Adding what is related to Enfold. The error log is very long through the day. There are a bunch of error logs for each day.
    I believe these are related to PHP 8.1. (PHP 8.0?

    I appologize but this entry is very very long showing most of the errors seen in the error long related to Enfold.

    2023-11-16T10:36:19+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/logoslider/logoslider.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php:742
    Stack trace:
    #0 /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php(698): AviaBuilder->autoloadLibraries()
    #1 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(324): AviaBuilder->loadLibraries()
    #2 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #3 /home/L/labhusetno/www/wp-includes/plugin.php(517): WP_Hook->do_action()
    #4 /home/L/labhusetno/www/wp-settings.php(643): do_action()
    #5 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #6 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #7 /home/L/labhusetno/www/wp-blog-header.php(13): require_once(‘/home/L/labhuse…’)
    #8 /home/L/labhusetno/www/index.php(17): require(‘/home/L/labhuse…’)
    #9 {main}
    thrown in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php on line 742

    2023-11-16T10:50:11+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php:742
    Stack trace:
    #0 /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php(698): AviaBuilder->autoloadLibraries()
    #1 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(324): AviaBuilder->loadLibraries()
    #2 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #3 /home/L/labhusetno/www/wp-includes/plugin.php(517): WP_Hook->do_action()
    #4 /home/L/labhusetno/www/wp-settings.php(643): do_action()
    #5 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #6 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #7 /home/L/labhusetno/www/wp-blog-header.php(13): require_once(‘/home/L/labhuse…’)
    #8 /home/L/labhusetno/www/index.php(17): require(‘/home/L/labhuse…’)
    #9 {main}
    thrown i /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php på linje 742

    2023-11-16T10:50:14+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/framework/php/widgets/widget-classes/class-avia-combo.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/framework/php/widgets/class-widget-loader.php:180
    Stack trace:
    #0 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(324): aviaFramework\widgets\avia_widget_loader->handler_widgets_init()
    #1 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #2 /home/L/labhusetno/www/wp-includes/plugin.php(517): WP_Hook->do_action()
    #3 /home/L/labhusetno/www/wp-includes/widgets.php(1858): do_action()
    #4 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(324): wp_widgets_init()
    #5 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #6 /home/L/labhusetno/www/wp-includes/plugin.php(517): WP_Hook->do_action()
    #7 /home/L/labhusetno/www/wp-settings.php(643): do_action()
    #8 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #9 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #10 /home/L/labhusetno/www/wp-blog-header.php(13): require_once(‘/home/L/labhuse…’)
    #11 /home/L/labhusetno/www/index.php(17): require(‘/home/L/labhuse…’)
    #12 {main}
    thrown i /home/L/labhusetno/www/wp-content/themes/enfold/framework/php/widgets/class-widget-loader.php på linje 180)

    2023-11-16T10:58:19+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/search/search.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php:742
    Stack trace:
    #0 /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php(698): AviaBuilder->autoloadLibraries()
    #1 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(324): AviaBuilder->loadLibraries()
    #2 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #3 /home/L/labhusetno/www/wp-includes/plugin.php(517): WP_Hook->do_action()
    #4 /home/L/labhusetno/www/wp-settings.php(643): do_action()
    #5 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #6 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #7 /home/L/labhusetno/www/wp-blog-header.php(13): require_once(‘/home/L/labhuse…’)
    #8 /home/L/labhusetno/www/index.php(17): require(‘/home/L/labhuse…’)
    #9 {main}
    thrown i /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php på linje 742

    2023-11-16T11:04:24+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/framework/php/class-megamenu.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/framework/php/inc-autoconfig.php:195
    Stack trace:
    #0 /home/L/labhusetno/www/wp-content/themes/enfold/framework/avia_framework.php(38): require()
    #1 /home/L/labhusetno/www/wp-content/themes/enfold/functions.php(247): require_once(‘/home/L/labhuse…’)
    #2 /home/L/labhusetno/www/wp-settings.php(611): include(‘/home/L/labhuse…’)
    #3 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #4 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #5 /home/L/labhusetno/www/wp-blog-header.php(13): require_once(‘/home/L/labhuse…’)
    #6 /home/L/labhusetno/www/index.php(17): require(‘/home/L/labhuse…’)
    #7 {main}
    thrown in /home/L/labhusetno/www/wp-content/themes/enfold/framework/php/inc-autoconfig.php on line 195

    2023-11-16T12:45:51+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/logoslider/logoslider.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php:742
    Stack trace:
    #0 /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php(698): AviaBuilder->autoloadLibraries()
    #1 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(324): AviaBuilder->loadLibraries()
    #2 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #3 /home/L/labhusetno/www/wp-includes/plugin.php(517): WP_Hook->do_action()
    #4 /home/L/labhusetno/www/wp-settings.php(643): do_action()
    #5 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #6 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #7 /home/L/labhusetno/www/wp-cron.php(46): require_once(‘/home/L/labhuse…’)
    #8 {main}
    thrown in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php on line 742

    2023-11-16T12:46:58+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php:742
    Stack trace:
    #0 /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php(698): AviaBuilder->autoloadLibraries()
    #1 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(324): AviaBuilder->loadLibraries()
    #2 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #3 /home/L/labhusetno/www/wp-includes/plugin.php(517): WP_Hook->do_action()
    #4 /home/L/labhusetno/www/wp-settings.php(643): do_action()
    #5 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #6 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #7 /home/L/labhusetno/www/wp-blog-header.php(13): require_once(‘/home/L/labhuse…’)
    #8 /home/L/labhusetno/www/index.php(17): require(‘/home/L/labhuse…’)
    #9 {main}
    thrown i /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php på linje 742

    2023-11-16T12:47:06+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php:742
    Stack trace:
    #0 /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php(698): AviaBuilder->autoloadLibraries()
    #1 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(324): AviaBuilder->loadLibraries()
    #2 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #3 /home/L/labhusetno/www/wp-includes/plugin.php(517): WP_Hook->do_action()
    #4 /home/L/labhusetno/www/wp-settings.php(643): do_action()
    #5 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #6 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #7 /home/L/labhusetno/www/wp-blog-header.php(13): require_once(‘/home/L/labhuse…’)
    #8 /home/L/labhusetno/www/index.php(17): require(‘/home/L/labhuse…’)
    #9 {main}
    thrown i /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php på linje 742

    2023-11-16T12:47:12+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/framework/php/class-megamenu.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/framework/php/inc-autoconfig.php:195
    Stack trace:
    #0 /home/L/labhusetno/www/wp-content/themes/enfold/framework/avia_framework.php(38): require()
    #1 /home/L/labhusetno/www/wp-content/themes/enfold/functions.php(247): require_once(‘/home/L/labhuse…’)
    #2 /home/L/labhusetno/www/wp-settings.php(611): include(‘/home/L/labhuse…’)
    #3 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #4 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #5 /home/L/labhusetno/www/wp-blog-header.php(13): require_once(‘/home/L/labhuse…’)
    #6 /home/L/labhusetno/www/index.php(17): require(‘/home/L/labhuse…’)
    #7 {main}
    thrown in /home/L/labhusetno/www/wp-content/themes/enfold/framework/php/inc-autoconfig.php on line 195

    2023-11-16T12:47:58+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php:742
    Stack trace:
    #0 /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php(698): AviaBuilder->autoloadLibraries()
    #1 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(324): AviaBuilder->loadLibraries()
    #2 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #3 /home/L/labhusetno/www/wp-includes/plugin.php(517): WP_Hook->do_action()
    #4 /home/L/labhusetno/www/wp-settings.php(643): do_action()
    #5 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #6 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #7 /home/L/labhusetno/www/wp-blog-header.php(13): require_once(‘/home/L/labhuse…’)
    #8 /home/L/labhusetno/www/index.php(17): require(‘/home/L/labhuse…’)
    #9 {main}
    thrown i /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php på linje 742

    2023-11-16T12:48:03+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/framework/php/inc-autoconfig.php:190
    Stack trace:
    #0 /home/L/labhusetno/www/wp-content/themes/enfold/framework/avia_framework.php(38): require()
    #1 /home/L/labhusetno/www/wp-content/themes/enfold/functions.php(247): require_once(‘/home/L/labhuse…’)
    #2 /home/L/labhusetno/www/wp-settings.php(611): include(‘/home/L/labhuse…’)
    #3 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #4 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #5 /home/L/labhusetno/www/wp-blog-header.php(13): require_once(‘/home/L/labhuse…’)
    #6 /home/L/labhusetno/www/index.php(17): require(‘/home/L/labhuse…’)
    #7 {main}
    thrown in /home/L/labhusetno/www/wp-content/themes/enfold/framework/php/inc-autoconfig.php on line 190

    2023-11-16T16:53:19+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/leaflet_maps/leaflet_maps.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php:742
    Stack trace:
    #0 /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php(698): AviaBuilder->autoloadLibraries()
    #1 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(324): AviaBuilder->loadLibraries()
    #2 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #3 /home/L/labhusetno/www/wp-includes/plugin.php(517): WP_Hook->do_action()
    #4 /home/L/labhusetno/www/wp-settings.php(643): do_action()
    #5 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #6 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #7 /home/L/labhusetno/www/wp-blog-header.php(13): require_once(‘/home/L/labhuse…’)
    #8 /home/L/labhusetno/www/index.php(17): require(‘/home/L/labhuse…’)
    #9 {main}
    thrown in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php on line 742

    2023-11-16T16:53:19+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-font-manager.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php:682
    Stack trace:
    #0 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(324): AviaBuilder->loadLibraries()
    #1 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #2 /home/L/labhusetno/www/wp-includes/plugin.php(517): WP_Hook->do_action()
    #3 /home/L/labhusetno/www/wp-settings.php(643): do_action()
    #4 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #5 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #6 /home/L/labhusetno/www/wp-blog-header.php(13): require_once(‘/home/L/labhuse…’)
    #7 /home/L/labhusetno/www/index.php(17): require(‘/home/L/labhuse…’)
    #8 {main}
    thrown in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php on line 682

    2023-11-16T17:40:48+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-element-manager.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php:682
    Stack trace:
    #0 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(324): AviaBuilder->loadLibraries()
    #1 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #2 /home/L/labhusetno/www/wp-includes/plugin.php(517): WP_Hook->do_action()
    #3 /home/L/labhusetno/www/wp-settings.php(643): do_action()
    #4 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #5 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #6 /home/L/labhusetno/www/wp-blog-header.php(13): require_once(‘/home/L/labhuse…’)
    #7 /home/L/labhusetno/www/index.php(17): require(‘/home/L/labhuse…’)
    #8 {main}
    thrown i /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php på linje 682

    2023-11-16T18:47:12+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/team/team.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php:742
    Stack trace:
    #0 /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php(698): AviaBuilder->autoloadLibraries()
    #1 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(324): AviaBuilder->loadLibraries()
    #2 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #3 /home/L/labhusetno/www/wp-includes/plugin.php(517): WP_Hook->do_action()
    #4 /home/L/labhusetno/www/wp-settings.php(643): do_action()
    #5 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #6 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #7 /home/L/labhusetno/www/wp-blog-header.php(13): require_once(‘/home/L/labhuse…’)
    #8 /home/L/labhusetno/www/index.php(17): require(‘/home/L/labhuse…’)
    #9 {main}
    thrown i /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php på linje 742

    2023-11-16T21:42:52+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php:742
    Stack trace:
    #0 /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php(698): AviaBuilder->autoloadLibraries()
    #1 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(324): AviaBuilder->loadLibraries()
    #2 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #3 /home/L/labhusetno/www/wp-includes/plugin.php(517): WP_Hook->do_action()
    #4 /home/L/labhusetno/www/wp-settings.php(643): do_action()
    #5 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #6 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #7 /home/L/labhusetno/www/wp-cron.php(46): require_once(‘/home/L/labhuse…’)
    #8 {main}
    thrown in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php on line 742

    2023-11-16T21:59:02+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-modal-base.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php:682
    Stack trace:
    #0 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(324): AviaBuilder->loadLibraries()
    #1 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #2 /home/L/labhusetno/www/wp-includes/plugin.php(517): WP_Hook->do_action()
    #3 /home/L/labhusetno/www/wp-settings.php(643): do_action()
    #4 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #5 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #6 /home/L/labhusetno/www/wp-blog-header.php(13): require_once(‘/home/L/labhuse…’)
    #7 /home/L/labhusetno/www/index.php(17): require(‘/home/L/labhuse…’)
    #8 {main}
    thrown i /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php på linje 682

    2023-11-16T21:59:10+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon_circles/icon_circles.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php:742
    Stack trace:
    #0 /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php(698): AviaBuilder->autoloadLibraries()
    #1 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(324): AviaBuilder->loadLibraries()
    #2 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #3 /home/L/labhusetno/www/wp-includes/plugin.php(517): WP_Hook->do_action()
    #4 /home/L/labhusetno/www/wp-settings.php(643): do_action()
    #5 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #6 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #7 /home/L/labhusetno/www/wp-blog-header.php(13): require_once(‘/home/L/labhuse…’)
    #8 /home/L/labhusetno/www/index.php(17): require(‘/home/L/labhuse…’)
    #9 {main}
    thrown i /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php på linje 742

    2023-11-16T22:00:39+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/framework/php/class-breadcrumb-trail.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/framework/php/inc-autoconfig.php:227
    Stack trace:
    #0 /home/L/labhusetno/www/wp-content/themes/enfold/framework/avia_framework.php(38): require()
    #1 /home/L/labhusetno/www/wp-content/themes/enfold/functions.php(247): require_once(‘/home/L/labhuse…’)
    #2 /home/L/labhusetno/www/wp-settings.php(611): include(‘/home/L/labhuse…’)
    #3 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #4 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #5 /home/L/labhusetno/www/wp-blog-header.php(13): require_once(‘/home/L/labhuse…’)
    #6 /home/L/labhusetno/www/index.php(17): require(‘/home/L/labhuse…’)
    #7 {main}
    thrown in /home/L/labhusetno/www/wp-content/themes/enfold/framework/php/inc-autoconfig.php on line 227

    2023-11-16T22:08:32+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/includes/helper-post-format.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/functions.php:829
    Stack trace:
    #0 /home/L/labhusetno/www/wp-settings.php(611): include()
    #1 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #2 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #3 /home/L/labhusetno/www/wp-blog-header.php(13): require_once(‘/home/L/labhuse…’)
    #4 /home/L/labhusetno/www/index.php(17): require(‘/home/L/labhuse…’)
    #5 {main}
    thrown in /home/L/labhusetno/www/wp-content/themes/enfold/functions.php on line 829

    2023-11-16T22:37:11+00:00 CRITICAL Uncaught Error: Failed opening required ‘/home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-svg-shapes.php’ (include_path=’.:/opt/alt/php81/usr/share/pear:/opt/alt/php81/usr/share/php:/usr/share/pear:/usr/share/php’) in /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php:682
    Stack trace:
    #0 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(324): AviaBuilder->loadLibraries()
    #1 /home/L/labhusetno/www/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #2 /home/L/labhusetno/www/wp-includes/plugin.php(517): WP_Hook->do_action()
    #3 /home/L/labhusetno/www/wp-settings.php(643): do_action()
    #4 /home/L/labhusetno/www/wp-config.php(96): require_once(‘/home/L/labhuse…’)
    #5 /home/L/labhusetno/www/wp-load.php(50): require_once(‘/home/L/labhuse…’)
    #6 /home/L/labhusetno/www/wp-blog-header.php(13): require_once(‘/home/L/labhuse…’)
    #7 /home/L/labhusetno/www/index.php(17): require(‘/home/L/labhuse…’)
    #8 {main}
    thrown i /home/L/labhusetno/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php på linje 682

    • This reply was modified 2 years, 4 months ago by SHR Design. Reason: Adding more information
    #1425021

    Hi FW,

    Please try to check Relevanssi Search
    In their Advanced Features, it lists: “Log queries, show most popular queries and recent queries with no hits.” maybe it would help.
    To integrate Relevanssi with our theme, please check our documentation: https://kriesi.at/documentation/enfold/search/#use-relevanssi-in-search-instead-of-the-default-search
    Hope it helps.

    Best regards,
    Nikko

    Hey gatehealing,
    Thanks for your patience, I see that the lazyload classes are present on the images, perhaps your caching plugin doesn’t recognize them, try disability your caching plugin and then check again, if this doesn’t help try following the Page Speed Insights recommendation of installing a lazy-load WordPress plugin and disable the theme lazyload option.
    Another point could be that either your caching plugin or the option in the theme settings has disable jQuery Migrate or has deferred the loading of jQuery, this could prevent the teeme lazyload from working, so a good please to start testing would be to disable the caching plugin, and any other “optimizing” plugins, and then ensure the Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer and Enfold Theme Options ▸ Performance ▸ Disable jQuery Migrate are not enabled.
    and then check again to see if that helps.

    Best regards,
    Mike

    #1419354

    Hi,
    Thank you for your patience and the password to your site but I don’t see a user name, please include.
    I see the [avia_search] shortcode in your topbar, it looks like you have not added the code to the end of your child theme functions.php file in Appearance ▸ Editor: add_shortcode('avia_search', 'get_search_form'); or if you did the symbols may be converted, please ensure to copy the code from the forum and not an email notification so the symbols are not converted. You said that you are using SearchWP, did you add the code for it to be the search for your site? And doesn’t it have it’s own shortcode, this page explains how to adjust the SearchWP shortcode for the options you want, you should end up with something like this: [searchwp_search_form engine="default" var="searchvar" button_text="Find Results"] (this code may not work on your site, follow the instructions)
    Your asking for a Amazon search bar, have you thought about adding a larger one like in our Knowledge Base Demo below your menu? We have a search bar element:
    Enfold_Support_3290.jpeg
    that will allow you to adjust the style better it you want a big search bar like on Amazon.

    Best regards,
    Mike

    #1419113

    Hi,

    Thank you for the info.

    Please follow this documentation to create a custom shortcode for the default search bar.

    // https://kriesi.at/documentation/enfold/search/#search-bar-shortcode

    You can then use that [avia_search] shortcode in the Navigation Label field of the new menu item beside the “SHOP & ORDER NOW” menu item. The menu items can be edited in the Appearance > Menus panel.

    To adjust the size, position and appearance of the search bar, please use this css code.

    #top #header #s {
        width: 100%;
        position: relative;
        padding: 11px 47px 11px 5px;
        z-index: 1;
        margin: 0;
        box-shadow: none;
        border-color: red;
        background-color: blue;
        color: green;
    }
    
    ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
      color: green;
      opacity: 1; 
    }
    
    :-ms-input-placeholder { /* Internet Explorer 10-11 */
      color: green;
    }
    
    ::-ms-input-placeholder { /* Microsoft Edge */
      color: green;
    }

    Adjust the values as necessary.

    Best regards,
    Ismael

    #1412171

    Hi Mike,

    There is no such functionality in Enfold by default, but I’m sure you could find a plugin which offers that functionality: https://wordpress.org/plugins/search/jobs/. We haven’t tested the theme with any plugins like that, so we don’t have anything to recommend unfortunately.

    Best regards,
    Rikard

    #1409070
    garysch37
    Participant

    Dear Support Team:

    When I search in Enfold Support (https://kriesi.at/support/) for “Lightbox arrows” (without the quotes), and choose ‘No date limit – search all posts’, ‘last 9 months’, ‘last 12 months’ or ‘last 24 months’, I get this results page: There has been a critical error on this website. However when I choose either ‘last 3 months’ or ‘last 6 months’, it works, and gives me search results. Note that if I swap the order of the keywords, to “arrows lightbox”, the error still comes up.

    It happens with other second keywords after “Lightbox” (e.g. “Lightbox arrow”, Lightbox close”, “Lightbox color”, etc.), but not others (e.g. “Lightbox event”). And it also doesn’t happen with just the single keyword, “Lightbox”.

    I checked and it’s not the URL generated–the first URL below generates the error, the second does not (they’re identical except for the second keyword):

    https://kriesi.at/support/search/Lightbox+arrows/?avia_filter_search=yes&avia_search_forums=66&avia_search_dates=all&avia_search_include=no
    
    https://kriesi.at/support/search/Lightbox+event/?avia_filter_search=yes&avia_search_forums=66&avia_search_dates=all&avia_search_include=no

    By the way, I was doing that search in the first place because I was having problems with some images opening in the lightbox singly, on their lonesome, without the arrows to scroll through the other images on the page. But I opened another topic to inquire about that.

    Can you help please with this search issue.

    Thanks,
    Gary

    • This topic was modified 2 years, 9 months ago by garysch37.
    #1408567
    BeeCee
    Participant

    Hi,

    I tried the solution of @mike here to use the shortcode for the AJAX search in the blog’s sidebar:
    –> here
    and in the documentation here –>

    I have added this to my code snippets plugin:

    add_shortcode('avia_search', 'get_search_form');

    Then I placed the widget “Custom HTML” in my sidebar with this shortcode:

    [avia_search]

    So far so good, it works, but it is not the ajax functionality, i.e. when I type a search term then a popup opens with the search results.
    This works fine in the main menu where I have added the search icon via the theme settings.

    How can I apply the ajax search functionality to the shortcode in my sidebar please?
    Thank you.

    #1406496

    Hey Andreas,

    Thank you for the inquiry.

    Both plugins should work fine; however, we recommend Wordfence because many Enfold users prefer it over other security plugins. You can see the distinction between the plugins by looking at the number of search results here in the forum.

    // https://kriesi.at/support/search/wordfence/?avia_filter_search=yes&avia_search_forums=66&avia_search_dates=all&avia_search_include=no
    // https://kriesi.at/support/search/iThemes+Security/?avia_filter_search=yes&avia_search_forums=66&avia_search_dates=all&avia_search_include=no

    Best regards,
    Ismael

    #1405785

    Hi,

    Sorry for the late reply.

    To modify the main query for archive you can use the pre_get_posts filter. An example how we use it to modify the search query is here:

    https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/Search/pre_get_posts.php

    For the ALB blog element we have the filter avia_blog_post_query.

    Hope this helps you.

    Best regards,
    Günter

    #1400845

    In reply to: Maintenance Mode

    Hey sarthakchoudhary,
    Thanks for your question, the maintenance options is for the whole site, if you don’t want to show a single page try setting that page to “private” you can use the “Quick Edit” option:
    Enfold_Support_593.jpeg
    or the Visibility option under Publish:
    Enfold_Support_595.jpeg
    I have not tested any plugins with this option, but you can try these: maintenance mode single page

    Best regards,
    Mike

    Hey Thomas,
    Thanks for your question, I don’t see that we have a documented list of all frontend CSS & JS files, but I created this list by disabling CSS & JS Merging And Compression and setting Template Builder Elements to Always load all elements in Enfold Theme Options ▸ Performance ▸ Website Performance And Optimization and then checked my demo site frontend source code.
    This gave me 121 items, including the LayerSlider and some WordPress items.

    <link rel='stylesheet' id='avia-grid-css' href='/wp-content/themes/enfold/css/grid.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-base-css' href='/wp-content/themes/enfold/css/base.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-layout-css' href='/wp-content/themes/enfold/css/layout.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-audioplayer-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/audio-player/audio-player.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-blog-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog/blog.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-postslider-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-button-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons/buttons.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-buttonrow-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-button-fullwidth-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-catalogue-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/catalogue/catalogue.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-comments-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/comments/comments.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-contact-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contact/contact.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-slideshow-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-slideshow-contentpartner-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contentslider/contentslider.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-countdown-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/countdown/countdown.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-gallery-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-gallery-hor-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-maps-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/google_maps/google_maps.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-gridrow-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/grid_row/grid_row.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-heading-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/heading/heading.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-rotator-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-hr-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/hr/hr.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-icon-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon/icon.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-icon-circles-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon_circles/icon_circles.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-iconbox-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconbox/iconbox.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-icongrid-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icongrid/icongrid.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-iconlist-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconlist/iconlist.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-image-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image/image.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-hotspot-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-magazine-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/magazine/magazine.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-masonry-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-siteloader-css' href='/wp-content/themes/enfold/css/avia-snippet-site-preloader.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-menu-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/menu/menu.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-notification-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/notification/notification.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-numbers-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/numbers/numbers.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-portfolio-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-post-metadata-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/post_metadata/post_metadata.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-progress-bar-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/progressbar/progressbar.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-promobox-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/promobox/promobox.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-sc-search-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/search/search.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-slideshow-accordion-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-slideshow-feature-image-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-slideshow-fullsize-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-slideshow-fullscreen-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-slideshow-ls-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-social-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/social_share/social_share.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-tabsection-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-table-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/table/table.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-tabs-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tabs/tabs.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-team-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/team/team.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-testimonials-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/testimonials/testimonials.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-timeline-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/timeline/timeline.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-toggles-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/toggles/toggles.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-module-video-css' href='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/video/video.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='dashicons-css' href='/wp-includes/css/dashicons.min.css?ver=6.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='admin-bar-css' href='/wp-includes/css/admin-bar.min.css?ver=6.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='layerslider-front-css' href='/wp-content/themes/enfold/config-layerslider/LayerSlider/assets/static/public/front.css?ver=7.6.7' type='text/css' media='all' />
    <link rel='stylesheet' id='layerslider-css' href='/wp-content/themes/enfold/config-layerslider/LayerSlider/assets/static/layerslider/css/layerslider.css?ver=7.6.7' type='text/css' media='all' />
    <link rel='stylesheet' id='wp-block-library-css' href='/wp-includes/css/dist/block-library/style.min.css?ver=6.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-scs-css' href='/wp-content/themes/enfold/css/shortcodes.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-popup-css-css' href='/wp-content/themes/enfold/js/aviapopup/magnific-popup.min.css?ver=5.3.1.1' type='text/css' media='screen' />
    <link rel='stylesheet' id='avia-lightbox-css' href='/wp-content/themes/enfold/css/avia-snippet-lightbox.css?ver=5.3.1.1' type='text/css' media='screen' />
    <link rel='stylesheet' id='avia-widget-css-css' href='/wp-content/themes/enfold/css/avia-snippet-widget.css?ver=5.3.1.1' type='text/css' media='screen' />
    <link rel='stylesheet' id='avia-dynamic-css' href='/wp-content/uploads/dynamic_avia/enfold_child.css?ver=63bad66d43ca1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-custom-css' href='/wp-content/themes/enfold/css/custom.css?ver=5.3.1.1' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-style-css' href='/wp-content/themes/enfold-child/style.css?ver=5.3.1.1' type='text/css' media='all' />
    <script type='text/javascript' src='/wp-includes/js/jquery/jquery.min.js?ver=3.6.1' id='jquery-core-js'></script>
    <script type='text/javascript' src='/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/avia-compat.js?ver=5.3.1.1' id='avia-compat-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/waypoints/waypoints.min.js?ver=5.3.1.1' id='avia-waypoints-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/avia.js?ver=5.3.1.1' id='avia-default-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/shortcodes.js?ver=5.3.1.1' id='avia-shortcodes-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/audio-player/audio-player.js?ver=5.3.1.1' id='avia-module-audioplayer-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/chart/chart-js.min.js?ver=5.3.1.1' id='avia-module-chart-js-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/chart/chart.js?ver=5.3.1.1' id='avia-module-chart-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contact/contact.js?ver=5.3.1.1' id='avia-module-contact-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.js?ver=5.3.1.1' id='avia-module-slideshow-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/countdown/countdown.js?ver=5.3.1.1' id='avia-module-countdown-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.js?ver=5.3.1.1' id='avia-module-gallery-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.js?ver=5.3.1.1' id='avia-module-gallery-hor-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.js?ver=5.3.1.1' id='avia-module-rotator-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon_circles/icon_circles.js?ver=5.3.1.1' id='avia-module-icon-circles-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icongrid/icongrid.js?ver=5.3.1.1' id='avia-module-icongrid-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconlist/iconlist.js?ver=5.3.1.1' id='avia-module-iconlist-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.js?ver=5.3.1.1' id='avia-module-hotspot-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/magazine/magazine.js?ver=5.3.1.1' id='avia-module-magazine-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/isotope.min.js?ver=5.3.1.1' id='avia-module-isotope-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.js?ver=5.3.1.1' id='avia-module-masonry-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/menu/menu.js?ver=5.3.1.1' id='avia-module-menu-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/notification/notification.js?ver=5.3.1.1' id='avia-module-notification-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/numbers/numbers.js?ver=5.3.1.1' id='avia-module-numbers-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.js?ver=5.3.1.1' id='avia-module-portfolio-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/progressbar/progressbar.js?ver=5.3.1.1' id='avia-module-progress-bar-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow-video.js?ver=5.3.1.1' id='avia-module-slideshow-video-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.js?ver=5.3.1.1' id='avia-module-slideshow-accordion-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.js?ver=5.3.1.1' id='avia-module-slideshow-fullscreen-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.js?ver=5.3.1.1' id='avia-module-slideshow-ls-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.js?ver=5.3.1.1' id='avia-module-tabsection-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tabs/tabs.js?ver=5.3.1.1' id='avia-module-tabs-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/testimonials/testimonials.js?ver=5.3.1.1' id='avia-module-testimonials-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/timeline/timeline.js?ver=5.3.1.1' id='avia-module-timeline-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/toggles/toggles.js?ver=5.3.1.1' id='avia-module-toggles-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/video/video.js?ver=5.3.1.1' id='avia-module-video-js'></script>
    <script type='text/javascript' src='/wp-includes/js/hoverintent-js.min.js?ver=2.2.1' id='hoverintent-js-js'></script>
    <script type='text/javascript' src='/wp-includes/js/admin-bar.min.js?ver=6.1.1' id='admin-bar-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/avia-snippet-hamburger-menu.js?ver=5.3.1.1' id='avia-hamburger-menu-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/avia-snippet-parallax.js?ver=5.3.1.1' id='avia-parallax-support-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/aviapopup/jquery.magnific-popup.min.js?ver=5.3.1.1' id='avia-popup-js-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/avia-snippet-lightbox.js?ver=5.3.1.1' id='avia-lightbox-activation-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/avia-snippet-sticky-header.js?ver=5.3.1.1' id='avia-sticky-header-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/avia-snippet-footer-effects.js?ver=5.3.1.1' id='avia-footer-effects-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/js/avia-snippet-widget.js?ver=5.3.1.1' id='avia-widget-js-js'></script>
    <script type='text/javascript' src='/wp-includes/js/dist/vendor/regenerator-runtime.min.js?ver=0.13.9' id='regenerator-runtime-js'></script>
    <script type='text/javascript' src='/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0' id='wp-polyfill-js'></script>
    <script type='text/javascript' src='/wp-includes/js/dist/hooks.min.js?ver=4169d3cf8e8d95a3d6d5' id='wp-hooks-js'></script>
    <script type='text/javascript' src='/wp-includes/js/dist/i18n.min.js?ver=9e794f35a71bb98672ae' id='wp-i18n-js'></script>
    <script type='text/javascript' src='/wp-includes/js/dist/url.min.js?ver=bb0ef862199bcae73aa7' id='wp-url-js'></script>
    <script type='text/javascript' src='/wp-includes/js/dist/api-fetch.min.js?ver=bc0029ca2c943aec5311' id='wp-api-fetch-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-layerslider/LayerSlider/assets/static/layerslider/js/layerslider.utils.js?ver=7.6.7' id='layerslider-utils-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-layerslider/LayerSlider/assets/static/layerslider/js/layerslider.kreaturamedia.jquery.js?ver=7.6.7' id='layerslider-js'></script>
    <script type='text/javascript' src='/wp-content/themes/enfold/config-layerslider/LayerSlider/assets/static/layerslider/js/layerslider.transitions.js?ver=7.6.7' id='layerslider-transitions-js'></script>
    

    I hope this helps you.

    Best regards,
    Mike

Viewing 30 results - 1 through 30 (of 288 total)