Forum Replies Created

Viewing 30 posts - 5,191 through 5,220 (of 67,469 total)
  • Author
    Posts
  • in reply to: Additional button on cookie-consent-bar #1442646

    Hey northorie,

    Thank you for the inquiry.

    You can add mew buttons for cookie bar in the Enfold > Privacy & Cookies > Cookie Handling > Buttons section. Simply click the green plus icon (+) to add a new button.

    Best regards,
    Ismael

    in reply to: distance below and intermediate line in white #1442645

    Hey schweg33,

    Thank you for the inquiry.

    You can use this css code to adjust the height of the sub menu container and the menu items.

    #top .av-submenu-container.av-5hgbq7-277231f29348cd34006a580016280e02, #top .av-submenu-container.av-5hgbq7-277231f29348cd34006a580016280e02 li {
        min-height: 2em;
        line-height: 2em;
    }
    

    Default min-height value is 52px.

    Best regards,
    Ismael

    in reply to: Adding image to the bottom of the header #1442644

    Hi,

    Thank you for the update.

    was added after

    with id ‘header_main’ and classes ‘container_wrap’ and ‘container_wrap_logo’.

    Try to replace the hook with “ava_main_header”.

    add_action('ava_main_header', function() {
        echo "<div class='av-bottom-header'></div>";
    }, 10);
    

    Best regards,
    Ismael

    Hi,

    You can use this css code to move the button to the left:

    .home #wrap_all .slideshow_inner_caption .avia-slideshow-button.avia-button {
        margin-right: 100px;
    }
    

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

    Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Cookie-Consent-Bar: Background color #1442638

    Hi,

    Thank you for the inquiry.

    You can adjust the style of the Cookie Consent Message Bar in the Enfold > Advanced Styling panel. Look for the elements under the Cookie Consent Bar section.

    Best regards,
    Ismael

    in reply to: Lines in Timeline #1442523

    Hi,

    Thank you for the update.

    You can manually override the color of the timeline indicator with this css code:

    .av-lvuuqm3x-450fca468668ba14ba421a03c92fd7a9 .av-milestone-date span:before, .av-lvuuqm3x-450fca468668ba14ba421a03c92fd7a9 .av-milestone-indicator {
        color: #d4af37 !important;
        border-color: #d4af37 !important;
        background-color: #d4af37 !important;
    }

    Best regards,
    Ismael

    in reply to: Weird Browser Issue #1442511

    Hey!

    Have you tried purging the cache or clearing the browser history? You should also try checking it in incognito mode. Let us know of the result.

    Best regards,
    Ismael

    in reply to: Kunden-Empfehlungen Position Pfeile ganz unten #1442510

    Hi,

    The arrows seem to be clickable on our end, but you can try using this css code to create more space below the testimonial slider.

    #top .avia-slider-testimonials.avia-testimonial-wrapper .avia-testimonial .avia-testimonial_inner {
        padding-bottom: 50px;
    }
    

    Best regards,
    Ismael

    in reply to: unable to download sample site #1442505

    Hi,

    Thank you for the inquiry.

    Are you trying to import the demo? Please try manually importing the demo using the XML files. Refer to the link below for more info:

    // https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo

    Best regards,
    Ismael

    in reply to: Weird Browser Issue #1442504

    Hi,

    Thank you for the inquiry.

    The site seems to be rendering correctly on emulation. Which browser are you using on your Android phone? Please try using major browsers like Chrome or Firefox.

    Best regards,
    Ismael

    in reply to: Builder elements to shortcodes #1442502

    Hey peterolle,

    Thank you for the inquiry.

    Have you tried using the Custom Element Templates? They function similarly to builder elements but can be updated globally. Please refer to the documentation below for more info:

    // https://kriesi.at/documentation/enfold/custom-element-templates/

    Best regards,
    Ismael

    in reply to: Images not exist in rankmath sitemap #1442501

    Hi,

    Thank you for the update.

    i recently found is about pagination and “next” and “prev” rel for better SEO

    We’ve found a thread related to this issue that might be helpful. Please check the links below:

    // https://support.rankmath.com/ticket/canonical-url-setting-for-paginated-blog-pages/#post-729041
    // https://support.rankmath.com/ticket/canonical-url-setting-for-paginated-blog-pages/#post-729924

    Best regards,
    Ismael

    in reply to: WooCommerce filters widget not showing in builder #1442499

    Hey peterolle,

    Thank you for the inquiry.

    The widget will only display if the following conditions are not true.

    if ( ! is_shop() && ! is_product_taxonomy() ) {
        return;
    }
    

    The condition above restricts the display of the filters on the default shop page and the product category pages. The widgets will not display if the Advance Layout Builder is active or if the custom shop page is enabled.

    Best regards,
    Ismael

    Hey Kauch_01,

    Thank you for the inquiry.

    To translate the placeholder text of the search bar, please add this filter to the functions.php file.

    add_filter('avf_frontend_search_form_param', 'avf_frontend_search_form_param_mod', 10, 1 );
    function avf_frontend_search_form_param_mod( array $params )
    {
    	$params['placeholder'] = __('Iskanje...','avia_framework');
    	return $params;
    }

    Best regards,
    Ismael

    in reply to: Search Bar Results #1442495

    Hi,

    Thank you for the screenshots.

    For the search bar or AJAX search, please add this filter in the functions.php file:

    add_filter('avf_ajax_search_query', 'avf_ajax_search_query_mod', 10, 1);
    function avf_ajax_search_query_mod( $search_parameters )
    {
    	$defaults = array('numberposts' => 5, 'post_type' => array( 'product' ), 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false);
    	$_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']);
    	$search_parameters = array_merge( $defaults, $_REQUEST );
    	return $search_parameters;
    }

    Best regards,
    Ismael

    in reply to: Lines in Timeline #1442494

    Hey andred57,

    Thank you for the inquiry.

    Did you adjust the Styling > Colors > Milestone Colors settings of the first item? Please check the color settings of the timeline items.

    Best regards,
    Ismael

    in reply to: site problem washi.me #1442492

    Hey maxcoppeta,

    Thank you for the inquiry.

    We found an error in the merged scripts, so we temporarily disabled the Performance > File Compression settings. This resolved the issue with the lightbox and the product information tab. Did you add any custom scripts?

    Best regards,
    Ismael

    in reply to: Footer spacing #1442491

    Hey mirr,

    Thank you for the inquiry.

    Have you tried adjusting the top padding of the #footer container? Please try to add this css code:

    #footer { 
         padding-top: 100px;
    }
    

    If this modification did not work, please provide the site URL in the private field.

    Best regards,
    Ismael

    in reply to: Video backgrounds not loading #1442490

    Hey jbcomcleaning23,

    Thank you for the inquiry.

    An error is being generated from the merged scripts. Please try to temporarily disable the Enfold > Performance > File Compression settings, then purge the cache. Let us know if this helps.

    avia-footer-scripts-…663947cab5080.js:26 Uncaught SyntaxError: Unexpected string

    Best regards,
    Ismael

    Hi,

    We also encountered this issue on another thread. Unfortunately, we’re not sure why the elements are getting moved outside when using a p tag. Please stick to using the div container for now.

    Best regards,
    Ismael

    in reply to: Tab Section height problem #1442403

    Hey Bryan,

    Thank you for the inquiry.

    Please try to add the following script in the functions.php file. The script should resize the tab section after loading the masonry items.

    function ava_custom_script_masonry_load_more()
    {
        ?>
        <script>
            (function ($)
            {
                function g()
                {
                    $(window).on('debouncedresize', function() {
                        if ($('.av-masonry-load-more').length) {
                            $(window).trigger('resize');
                        }
                    });
                }
    
                $(document).ready(function ()
                {
                    g();
                });
            })(jQuery);
        </script>
        <?php
    }
    add_action('wp_footer', 'ava_custom_script_masonry_load_more');
    

    Best regards,
    Ismael

    Hi,

    Glad to know that the issue has been resolved. To optimize page loading by only including elements that are actually used, you can adjust the Enfold > Performance > Disable Template Builder Elements > Disabling Of Template Builder Elements settings. If you have more questions, please don’t hesitate to open a new thread.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Product tabs with other products #1442401

    Hey peterolle,

    Thank you for the inquiry.

    You can add extra items to the default product tabs by using the woocommerce_product_tabs filter. Usage examples are available in the documentation below:

    // https://woocommerce.com/document/editing-product-data-tabs/#section-5

    In the woo_new_product_tab_content function, you can add custom fields, display another product, or insert custom content.

    Best regards,
    Ismael

    in reply to: Delay in start background video #1442400

    Hey webmonnik,

    Thank you for the inquiry.

    Is there an option to load the video immediately, so that it is visible right when the page opens?

    This is not possible but you can control the background video of the color section by adjusting the options in the Styling > Background Color toggle. You can set it to black or #000000.

    Best regards,
    Ismael

    in reply to: List not hyphenating #1442033

    Hi,

    Nice. That would be very useful, less JavaScript.

    Best regards,
    Ismael

    Hi,

    Thank you for the video.

    The video isn’t buffering or loading on our end. Please try uploading it to a file or video sharing site like Dropbox, YouTube, or Vimeo.

    Are you certain you haven’t zoomed in or out on your browser? The mobile or burger menu icon should only display in the top header, not in the sidebar.

    Best regards,
    Ismael

    in reply to: Custom post type in masonry #1442031

    Hi,

    Thank you for the info.

    The site is not loading on our end for some reason. Did you install a security plugin? Please disable the security plugin temporarily, upgrade the theme to version 5.7, then temporarily disable the Enfold > Performance > File Compression settings. We’ll try to check the site again afterwards.

    Best regards,
    Ismael

    Hi,

    Are any of your support folks in the Philippines?

    Yes, I might have been checking the site that time. I tried to copy the content on a test page and chose a smaller version of the background image for the video, but it didn’t improve the LCP significantly. I found myself locked out of the dashboard after that. I will ask the rest of the team to check the issue.

    Best regards,
    Ismael

    in reply to: Image box shadow 2 sides only #1442029

    Hey fanlokbun,

    Thank you for the inquiry.

    Yes, it’s possible, but there is no option for this by default, so you will have to specify the css modification manually. Add a custom css class name to the image element, such as “av-custom-image-shadow”, then add this css code.

    .av-custom-image-shadow .avia_image {
        box-shadow: 10px 10px 10px 0;
    }

    Best regards,
    Ismael

    in reply to: Increase Button Size for Cart #1442028

    Hi,

    Sorry about that. We adjusted the css code again. Please make sure to purge the cache before checking.

    Best regards,
    Ismael

Viewing 30 posts - 5,191 through 5,220 (of 67,469 total)