Forum Replies Created

Viewing 30 posts - 271 through 300 (of 66,827 total)
  • Author
    Posts
  • in reply to: content disappears, cookie consent not working properly #1489795

    Hey Munford,

    Thank you for the inquiry.

    We are seeing a script error in the browser console, but we’re not sure where it’s being generated from. It seems to be added inline, but we can’t access the exact source. Did you recently add a script to the site?

    This is the error:

    Uncaught SyntaxError: missing ) after argument list
    

    Best regards,
    Ismael

    in reply to: Google Insights mobile /// Web Core vitals #1489794

    Hi,

    Thank you for the update.

    The page speed reports clearly point to the Revolution Slider as the cause of the LCP issue, so it’s definitely the reason for the decreased score. On the second site, you’ll notice there is no LCP issue because the Revolution Slider only contains static images, without moving parts or animations, unlike the first site, which uses complex slides and effects.

    This is the LCP report — note the element sr7-module#SR7_31_1.

    LCP request discovery
    Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loadingLCP
    lazy load not applied
    fetchpriority=high should be applied
    Request is discoverable in initial document
    sr7-module#SR7_31_1 > sr7-content > sr7-slide#SR7_31_1-130 > sr7-img#SR7_31_1-130-23

    Fixing this LCP issue should significantly increase the overall score. We recommend reaching out to the plugin developers for additional information about the issue.

    Best regards,
    Ismael

    Hey waveseven,

    Thank you for the inquiry.

    You are uploading a lot of files simultaneously, so it will definitely take some time. We tested uploading a 26 MB video on our local installation, and it was uploaded in 2 seconds or less. Try to temporarily deactivate your plugins to see if that improves the upload speed, or try uploading a maximum of 5 files at a time. Let us know the result.

    Best regards,
    Ismael

    in reply to: z value #1489792

    Hi,

    Thank you for following up.

    The class name bluebox was added to the column inside the cell. Please correct this by moving the bluebox class to the cell element.

    Best regards,
    Ismael

    in reply to: Margins for masonry grid loading delay on mobile #1489791

    Hi,

    Thank you for the screenshots.

    We’re not really seeing Step 1, but for Step 3, try to look for the following css code and adjust the value from 50px to 20px.

    .av-masonry-entry {
        margin-bottom: 50px !important;
    }

    Set the margin-bottom value to 20px, then purge the cache before testing the page.

    Best regards,
    Ismael

    Hey PhatJ,

    Thank you for the inquiry.

    Try to add a Custom CSS Class name (e.g., av-video-section-control) to the Color Section element by going to Advanced > Developer Settings, then add the following code to the functions.php file to pause the video on the last frame and prevent it from restarting.

    function av_custom_script() {
        ?>
        <script>
        document.addEventListener("DOMContentLoaded", function () {
          const videos = document.querySelectorAll(".av-video-section-control video");
    
          videos.forEach(function(video) {
            video.removeAttribute("loop");
    
            video.addEventListener("ended", function () {
              video.currentTime = video.duration;
              video.pause();
            });
          });
        });
        </script>
        <?php
    }
    add_action('wp_footer', 'av_custom_script');
    

    This should help: https://kriesi.at/documentation/enfold/add-custom-css/

    Best regards,
    Ismael

    in reply to: Forcing Columns to Stay the Same Size #1489787

    Hi,

    We can no longer access the account. Did you manage to resolve the issue?

    Best regards,
    Ismael

    in reply to: events calendar add to calendar dropdown getting cut off #1489786

    Hey sky19er,

    Thank you for the inquiry.

    Try to set a minimum height for the dropdown container using this css:

    .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-subscribe-dropdown {
        min-height: 300px;
    }

    Best regards,
    Ismael

    in reply to: z value #1489742

    Hi,

    Thank you for the update.

    You can assign a Custom CSS Class name to the element and use it instead of the default unique identifier or selector (.av-3rcobvm-8d18db703327afb5e34a99a6bcf02d44). Please refer to the documentation below for more info.

    https://kriesi.at/documentation/enfold/add-custom-css/

    Best regards,
    Ismael

    in reply to: Animated boxes underneath the video #1489741

    Hey Diana,

    Thank you for the inquiry.

    The Color Section element includes a z-index option, which can be adjusted to make sure the section containing the boxes displays above the first video. Please refer to the screenshot below.

    Screenshot-2025-10-02-at-1-37-48-PM

    Best regards,
    Ismael

    in reply to: Add buttons to blog posts in grid layout #1489740

    Hey jacobedgren4,

    Thank you for the inquiry.

    Unfortunately, this option is not available by default and would require template modifications, such as using custom fields and creating meta boxes for them in the page editor. Another option is to manually create your own grid using columns and text elements in the builder. You can then add a button element in each column and assign the appropriate link.

    Let us know if you need more info.

    Best regards,
    Ismael

    in reply to: Margins for masonry grid loading delay on mobile #1489739

    Hi,

    Thank you for the login info.

    We re-added the ava_auto_resize script in the functions.php file and adjusted the ID value in the is_page function so that the script runs on the homepage. This seems to have resolved the issue with the masonry layout as shown in the screenshot below.

    Screenshot-2025-10-02-at-1-14-49-PM

    Please make sure to purge the cache before checking the page, or switch to incognito mode. Let us know the result.

    Best regards,
    Ismael

    in reply to: Button Link Going Past Beyond Target #1489738

    Hi,

    Thank you for the update.

    The text (or the column containing the text) in the “Empecemos” section is animated, as well as the columns and sections above it. Try to save the home page as a template, then create a test page and disable all animations from the top of the page down to the “Empecemos” section. After that, test the page and let us know the result.

    Best regards,
    Ismael

    in reply to: Google Insights mobile /// Web Core vitals #1489737

    Hey Sven,

    Thank you for the inquiry.

    The issue seems to be due to the addition of the Revolution Slider, which impacts the LCP (Largest Contentful Paint) score. We recommend hiding the default Revolution Slider on mobile view and display a more minimal replacement, like a static image or text.

    The same slider also appears to be causing forced reflows, which can significantly affect performance. Unfortunately, we don’t have access to the Revolution Slider scripts, so we won’t be able to help directly with fixing this.

    The server is responding well but there is a redirect on the first request which adds latency. This might be coming from a CDN or server configuration. You may need to contact your hosting provider or check redirect rules to resolve it.

    Let us know if you need more info.

    Best regards,
    Ismael

    Hi,

    Glad we could be of help! Please don’t hesitate to open another thread if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Forcing Columns to Stay the Same Size #1489712

    Hi,

    Thank you for the info.

    The page is inaccessible because the test account is not a member, even when logged in. Please provide a member account so we can check the issue properly.

    Screenshot-2025-10-01-at-12-13-18-PM

    Best regards,
    Ismael

    Hey lpeyton2,

    Thank you for the inquiry.

    Did you install any cache or compression plugins? Please try temporarily disabling the Enfold > Performance > File Compression settings if other compression options are enabled, either in a caching plugin or a dedicated compression plugin. Let us know the results.

    Also, where is the site hosted? It’s possible that a caching mechanism is enabled on your server, which might be causing the issue. Please contact your hosting provider for additional information.

    Best regards,
    Ismael

    in reply to: z value #1489710

    Hey limedrop,

    Thank you for the inquiry.

    Try to adjust the z-index of the cell containing the blue box.

    .responsive #top #wrap_all .flex_cell.av-3rcobvm-8d18db703327afb5e34a99a6bcf02d44 {
        z-index: 999;
        position: relative;
        overflow: visible;
    }

    Screenshot-2025-10-01-at-11-49-14-AM

    Best regards,
    Ismael

    in reply to: Button Link Going Past Beyond Target #1489709

    Hi,

    Thank you for the screenshot.

    What happens when you disable the text or column animations? It seems to work correctly once the animations have finished.

    Best regards,
    Ismael

    in reply to: menu not linked child pages should be marked in the menu #1489707

    Hi,

    Thanks for the update.

    Try to adjust the values in this css code:

    .page-id-516 li#menu-item-508 .avia-menu-text::after, .page-id-536 li#menu-item-508 .avia-menu-text::after, .page-id-553 li#menu-item-508 .avia-menu-text::after, .page-id-555 li#menu-item-508 .avia-menu-text::after {
        top: 32px;
        height: 2px;
        min-width: 167px;
        left: -10px;
        bottom: -9px;
    }

    Best regards,
    Ismael

    in reply to: Margins for masonry grid loading delay on mobile #1489706

    Hi,

    We may need to log in to the site to properly inspect the issue. Please provide the login details in the private field.

    Best regards,
    Ismael

    Hi,

    Thank you for the links.

    We added this code to the Quick CSS field.

    #top .woocommerce-order-details .order-again {
        display: none !important;
    }

    Screenshot-2025-10-01-at-11-31-11-AM

    Best regards,
    Ismael

    in reply to: Address 2 field leaves a blank on email order conformation #1489678

    Hi,

    Thank you for the info.

    We got this error when we check the link, and we didn’t find any other items in the order history. Would you mind placing a sample order so we can check further?

    Screenshot-2025-09-30-at-1-15-32-PM

    Best regards,
    Ismael

    in reply to: Second image now showing up in this shop #1489677

    Hi,

    Great! Glad to know this has been resolved. Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: a11y report #1489676

    Hi,

    Thank you for the info. We’ll forward this to our channel.

    Best regards,
    Ismael

    in reply to: Margins for masonry grid loading delay on mobile #1489675

    Hi,

    Thank you for the update.

    What happens when you add this script in the functions.php file?

    add_action('wp_footer', 'ava_auto_resize');
    function ava_auto_resize() {
        if (!is_page(703)) {
            return;
        }
        ?>
        <script>
        (function($) {
            var resizeInterval = setInterval(function() {
                $(window).trigger('resize');
            }, 1500);
    
            $(window).on('load', function() {
                clearInterval(resizeInterval);
            });
        })(jQuery);
        </script>
        <?php
    }
    

    Please make sure to purge the cache before checking the page.

    Best regards,
    Ismael

    in reply to: menu not linked child pages should be marked in the menu #1489674

    Hi,

    Thank you for the login info.

    Try using this css code to adjust the color of the line on initial load, then change it on scroll or when the header transparency is disabled.

    .page-id-516 li#menu-item-508 .avia-menu-text::after, .page-id-536 li#menu-item-508 .avia-menu-text::after, .page-id-553 li#menu-item-508 .avia-menu-text::after, .page-id-555 li#menu-item-508 .avia-menu-text::after {
        background: #000000 !important;
    }
    
    .page-id-516 .av_header_transparency li#menu-item-508 .avia-menu-text::after, .page-id-536 .av_header_transparency li#menu-item-508 .avia-menu-text::after, .page-id-553 .av_header_transparency li#menu-item-508 .avia-menu-text::after, .page-id-555 .av_header_transparency li#menu-item-508 .avia-menu-text::after {
        background: #f8f8f8 !important;
    }

    Best regards,
    Ismael

    in reply to: Layerslider text box right margin #1489672

    Hi,

    Glad we could be of help. Please let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Address 2 field leaves a blank on email order conformation #1489671

    Hi,

    Please provide the admin account you’re currently logged in with. Make sure to place the information in the private field.

    Best regards,
    Ismael

    in reply to: Video on mobile #1489670

    Hi,

    Thank you for the inquiry.

    Unfortunately, videos in sliders or full-width sections are disabled on mobile devices by default, which is why a fallback image option is available. This fallback image will display on smaller screens in place of the video. If you really need to show the video on mobile view, try using the Layer Slider element. You can add a Video layer and set it as the background. Let us know the result.

    Best regards,
    Ismael

Viewing 30 posts - 271 through 300 (of 66,827 total)