Forum Replies Created

Viewing 30 posts - 121 through 150 (of 67,539 total)
  • Author
    Posts
  • Hey Elena,

    Thank you for the inquiry.

    Edit the page then try to set the Layout > Header visibility and transparency settings to No Transparency or Transparent & Glassy Header. To center the logo, please try this css code:

    #header_main .inner-container {
        display: flex;
        align-items: center;
        width: 100%;
    }
    
    #header_main .main_menu,
    #header_main .av-main-nav-wrap,
    #header_main .av-main-nav {
        display: contents;
    }
    
    #header_main .logo {
        order: 35;
        flex-shrink: 0;
        margin: 0 40px;
        transform: translate(10px, 10px);
    }
    
    #header_main .menu-item-top-level-1 { order: 10; margin-left: auto; }
    #header_main .menu-item-top-level-2 { order: 20; }
    #header_main .menu-item-top-level-3 { order: 30; }
    #header_main .menu-item-top-level-4 { order: 40; }
    #header_main .menu-item-top-level-5 { order: 50; }
    #header_main .menu-item-top-level-6 { order: 60; margin-right: auto; }
    
    #header_main .av-burger-menu-main {
        display: none;
    }

    You may need to shorten the title of the “Cosa posso fare per te” menu item.

    Best regards,
    Ismael

    Hey tchamp77,

    Thank you for the inquiry,

    This is to be expected, since the default behavior when clicking an inactive Horizontal Gallery item is to navigate or slide it to the center. This behavior overrides the anchoring to the Accordion items. Once the image is centered, the anchor should work without issue.

    To override this behavior, you can try this script in the functions.php file:

    <?php
    add_action( 'wp_footer', 'ava_wp_footer_script_mod', 99 );
    
    function ava_wp_footer_script_mod() {
        ?>
        <script>
        // override default horizontal gallery clicks behavior to open accordion and scroll to title
        (function($) {
            $(document).on('click', '.av-horizontal-gallery-slider a[href^="#toggle-id-"]', function(e) {
                e.preventDefault();
                e.stopImmediatePropagation();
    
                var targetId = $(this).attr('href').slice(1);
    
                setTimeout(function() {
                    var $title = $('#toggle-toggle-' + targetId);
                    var $wrap  = $('#' + targetId);
    
                    if (!$title.length) return;
    
                    if (!$wrap.hasClass('active_tc')) $title.trigger('click');
    
                    setTimeout(function() {
                        $('html, body').animate({ scrollTop: $title.offset().top - 80 }, 500);
                    }, 50);
                }, 50);
            });
        })(jQuery);
        </script>
        <?php
    }

    Best regards,
    Ismael

    in reply to: Enfold #1495800

    Hey Pam Miller,

    Thank you for the inquiry.

    The server should have PHP version 8.0 or later to be compatible with the latest version of the theme, 7.1.4. You can download the latest version of the theme from your Themeforest account. After retrieving the latest version, you may need to manually install or upload it to your server via S/FTP. Please check the link below for more info.

    https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    You may need to ask your hosting provider to increase the cURL timeout duration. If the issue persists after increasing the timeout duration, try to manually import the demo using the XML files. Please check the documentation below for more info.

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

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Enfold-Lawyer #1495798

    Hey Behnam,

    Thank you for the inquiry.

    You may need to manually install or import the Lawyer demo using the XML files. Please check the documentation below for more info.

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

    Best regards,
    Ismael

    in reply to: Youtube are not blocked #1495758

    Hi,

    Thank you for the inquiry.

    The privacy cookie option in the theme can only block Youtube videos added using the Video element. Embedded videos added via iframes or other plugins are not covered and cannot be controlled by the privacy feature. You need to use the Video element or the corresponding Video element shortcode.

    Let us know if you have more questions.

    Best regards,
    Ismael

    Hey Marc,

    Thank you for the inquiry.

    In the Column element’s Styling > Background > Custom Background Color, there should be a transparency (opacity) slider in the color picker, as shown in the screenshot below.

    qCLyaee.md.png

    Let us know if you need more info.

    Best regards,
    Ismael

    in reply to: Not registered dependencies for Enfold css and js #1495756

    Hi,

    Thank you for the info.

    In the enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php file, please look for this code around line 217:

    //set up loading of assets. wait until post id is known
    add_action( 'wp', array( $this, 'extra_asset_check' ) , 10 );
    

    Replace it with:

    //set up loading of assets. wait until post id is known
    add_action( 'wp_enqueue_scripts', array( $this, 'extra_asset_check' ) , 20 );
    

    Let us know if the issue persists.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    In the avf_contact_form_autoresponder_mail filter, you have to translate “Your Message:” text to German.

    add_filter( 'avf_contact_form_autoresponder_mail', function( $mail_array, $new_post, $form_params, $form_obj ) {
        if( isset( $mail_array['Message'] ) ) {
            $marker = '<strong>' . __( 'Ihre Nachricht:', 'avia_framework' ) . '</strong>';
            $pos = strpos( $mail_array['Message'], $marker );
    
            if( $pos !== false ) {
                $mail_array['Message'] = rtrim( substr( $mail_array['Message'], 0, $pos ) );
            }
        }
        return $mail_array;
    }, 10, 4 );

    Let us know how it goes.

    Best regards,
    Ismael

    in reply to: How to ReOrder Page Sidebar menu Items #1495754

    Hi,

    Thank you for the update.

    Are you using the default Block Editor? Please open the Preferences panel, and make sure that General > Document settings > Page attributes is enabled.

    qCL8Vlp.md.png

    This documentation should help: https://wordpress.org/documentation/article/preferences-overview/

    Best regards,
    Ismael

    Hey nebuddlho,

    Thank you for the inquiry.

    This is the expected behavior, which is why there are warnings in the element fields to ensure that the html added to the builder is valid. Please review the content, specifically the html tags and make sure that all tags are properly closed and valid before saving the page.

    Let us know if you have any further questions.

    Best regards,
    Ismael

    in reply to: burger menu accessibility #1495752

    Hi,

    Great! Glad to know that you’ve found a working solution. Please feel free to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Preview Changes, Edit Socket #1495751

    Hi,


    @ivloulinghong
    : In the Enfold > Footer > Copyright field, simply add the placeholder [nolink] to remove the default copyright text. Please check the screenshot below.

    qCLT0OJ.md.png

    Best regards,
    Ismael

    in reply to: Tab Section with Table – mobile not scrollable #1495718

    Hi,

    Sorry for the delay. Unfortunately, adding swipe functionality to the tab section would require modifications that are beyond the scope of support. At the moment, the tab titles are accessible only by clicking and are not swipeable. Please feel free to open another thread if you have any more questions about the theme.

    Best regards,
    Ismael

    in reply to: Fullscreen Homepage Teaser Implementation #1495717

    Hi,

    Great! Glad to hear that you’ve found a working solution — it looks good on our end. Please don’t hesitate to open another thread if you have any further questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: How to ReOrder Page Sidebar menu Items #1495716

    Hi,

    Thank you for the inquiry.

    You can find the Order field in the page editor. Edit the page, then look for the Page Attributes box.

    qC3biUQ.md.png

    Let us know if you need more info.

    Best regards,
    Ismael

    Hey tebitron,

    Thank you for the inquiry.

    You can use this filter in the functions.php file to strip down the form data from the autoresponder message.

    add_filter( 'avf_contact_form_autoresponder_mail', function( $mail_array, $new_post, $form_params, $form_obj ) {
        if( isset( $mail_array['Message'] ) ) {
            $marker = '<strong>' . __( 'Your Message:', 'avia_framework' ) . '</strong>';
            $pos = strpos( $mail_array['Message'], $marker );
    
            if( $pos !== false ) {
                $mail_array['Message'] = rtrim( substr( $mail_array['Message'], 0, $pos ) );
            }
        }
        return $mail_array;
    }, 10, 4 );
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The cart icon displays fine on our own installation, so it’s likely a conflict with one of your plugins or a recent modification to the theme. Please try disabling the compression settings and the cache plugin to see if that makes a difference. For now, keep the css code to maintain the cart icon color.

    Best regards,
    Ismael

    in reply to: “Avia Module” errors being thrown #1495713

    Hi,

    Great! Glad this has been resolved. Please don’t hesitate to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Media Cleaner x Avia #1495712

    Hey there,

    Thanks for reaching out and for your interest in improving compatibility with Enfold — we really appreciate it.

    We have sent you a copy of the latest version of the theme for your development and testing purposes. Please let us know if you need anything specific from our side or if there are particular areas where we can assist to ensure smooth compatibility with your plugins.

    Looking forward to collaborating with you.

    Best regards
    Kriesi Team

    in reply to: Please contribute and translate Enfold #1495683

    Hi,

    Thank you for this translation @BigBatT. We’ll forward this to our channel and possibly include it in the next patch.

    Best regards,
    Ismael

    in reply to: Fullscreen Homepage Teaser Implementation #1495682

    Hi,

    Sorry for the delay. The header or footer should not display or flash if this option is enabled because they are not rendered in the document at all. Please make sure to purge the cache or check the site on incognito mode.

    We’ll need access to or at least be able to view the site. Please provide the site URL and login details in the private field. If possible, also include a short video clip or screenshots of the issue.

    Best regards,
    Ismael

    in reply to: Not registered dependencies for Enfold css and js #1495681

    Hi,

    Thank you for the confirmation. Is this the only notice left? We’ll investigate the issue further.

    Best regards,
    Ismael

    in reply to: adding aria-labels to lightbox arrows/controls #1495680

    Hi,

    Glad to know that you managed to find a working solution. Please feel free to open another thread if you have any further questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: heading font not rendered properly #1495679

    Hey annevoelkel,

    Thank you for the inquiry.

    The site is currently in maintenance mode, so we’re not able to check it. Please provide the login details in the private field and if possible, share a screenshot as well. In the meantime, you can try using a plugin such as Fonts Plugin to configure existing fonts or add additional fonts to your installation.

    https://wordpress.org/plugins/olympus-google-fonts/

    Best regards,
    Ismael

    Hey zimbo,

    Thank you for the inquiry.

    What happens when you add the following css code?

    #top #header .av-main-nav>li>a>svg:first-child, #top #wrap_all .header_color .cart_dropdown_first .cart_dropdown_link.avia-svg-icon svg:first-child {
        fill: #000;
        stroke: #000;
    }
    

    qBRftUl.png

    Best regards,
    Ismael

    in reply to: How to ReOrder Page Sidebar menu Items #1495677

    Hey JennyGr,

    Thank you for the inquiry.

    You might be referring to the Enfold > Sidebar Settings > Page Sidebar Navigation option. When enabled, this option displays sidebar navigation containing the nested subpages of the active page. Let us know the result.

    qBRFJWJ.md.png

    Best regards,
    Ismael

    in reply to: Cropped images in Lightbox #1495558

    Hi,

    Great! Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the details.

    The Cloudflare-side changes that were made included the following:
    • Bot Fight Mode enabled
    • Rate limiting / protection rules added for:
    • /wp-admin/admin-ajax.php
    • /wp-json/*

    We did find an access error for admin-ajax, so this might be what caused the builder to not work correctly. Try removing the rate limiting configuration for this.

    • /wp-admin/admin-ajax.php
    • /wp-json/*
    

    We tried creating a test page (see private field), and the builder seems to be loading correctly. However, we noticed that another builder (WP Bakery) is enabled, which might be conflicting with the theme.

    Best regards,
    Ismael

    in reply to: Not registered dependencies for Enfold css and js #1495556

    Hi,

    Glad to know that this resolved the issue. For the remaining notice, please replace the admin_enqueue_scripts hook with the following code.

    add_action( 'admin_enqueue_scripts', function() {
    
        if ( ! wp_style_is( 'avia-layout', 'registered' ) ) {
            wp_register_style( 'avia-layout', false );
        }
    
        if ( ! wp_style_is( 'avia-shortcodes', 'registered' ) ) {
            wp_register_style( 'avia-shortcodes', false );
        }
    
        if ( ! wp_script_is( 'avia-shortcodes', 'registered' ) ) {
            wp_register_script( 'avia-shortcodes', false );
        }
    
        if ( ! wp_script_is( 'avia_element_js', 'registered' ) ) {
            wp_register_script( 'avia_element_js', false );
        }
    
    }, 1 );

    Best regards,
    Ismael

Viewing 30 posts - 121 through 150 (of 67,539 total)