Forum Replies Created

Viewing 30 posts - 31 through 60 (of 67,432 total)
  • Author
    Posts
  • 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

    Hey volpagirl,

    Thank you for the inquiry.

    Would you mind providing a screenshot of the issue or posting the login details in the private field? You can use platforms like FreeImage, ImgBB, PostImages or Dropbox to upload and share the screenshot. Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, ImgBB, PostImages or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.

    Best regards,
    Ismael

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

    Hi,

    How did you add the code before? We didn’t find a functions.php file in the child theme, so we created one and added the admin_enqueue_scripts hook, which removed the notices in the Pages panel. Please make sure to purge the cache before checking.

    Best regards,
    Ismael

    in reply to: Burger and Social Media icons position on Mobile view #1495553

    Hi,

    Odd. This is not the menu style I saw yesterday. Please try to use this css code instead:

    #av-burger-menu-ul li.av-show-submenu > .sub-menu > li > a > .avia-menu-text {
        color: #ffffff;
        font-size: 0.8em;
    }

    To add a submenu indicator, try to add this css code:

    .av-width-submenu > a::after {
        content: "›";
        display: inline-block;
        margin-left: 6px;
        transform: rotate(90deg);
        font-size: 0.9em;
    }
    
    .av-width-submenu.av-show-submenu > a::after {
        content: "";
    }

    Best regards,
    Ismael

    in reply to: Filpbox Grid not not translatable in WPML #1495515

    Hi,

    Great! Glad to know that you have found a working solution. Thanks for sharing!

    Have a nice day.

    Best regards,
    Ismael

    in reply to: CPT Sticky Posts in Masonry #1495514

    Hi,

    Yes, that seems to be the case. Please feel free to open another thread if you have more questions about the theme. Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: add icon font not working #1495513

    Hi,

    Great! Glad to hear that the issue has been resolved. Please feel free to open a new thread if the issue occurs again.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    We can see a lot of script errors when we try to edit the same page. Did you install a plugin recently? Please try deactivating all plugins temporarily, then reactivate them one at a time to identify which one is causing the script errors.

    Let us know the result.

    Best regards,
    Ismael

    in reply to: horizontal gallery crop on mobile #1495511

    Hey Tilman,

    Thank you for the inquiry.

    You can add this css code to apply a minimum height to the horizontal gallery container on smaller screens.

    @media only screen and (max-width: 767px) {
        .responsive .av-horizontal-gallery-inner {
            position: static;
            min-height: 400px;
        }
    }

    Result:

    qfIWPmG.md.png

    Best regards,
    Ismael

    in reply to: Website formatting #1495510

    Hi,

    Thank you for the login info.

    We tried logging in, but it’s asking for a 9-digit authentication code. The issue occurs because the post css file for that particular page is being deleted and returns a 404 error. You can try adding this code to the functions.php file to disable post css file generation for the home page.

    add_filter( 'avf_post_css_create_file', function( $create ) {
        if ( is_singular() && get_the_ID() === 248 ) {
            return false;
        }
    
        return $create;
    });

    Best regards,
    Ismael

    in reply to: Cropped images in Lightbox #1495509

    Hi,

    Thank you for the clarification.

    How did you add the Portfolio Grid? Did you create a custom element? Try setting the preview_mode to custom to ensure that the image_size does not revert to the default.

    Best regards,
    Ismael

    in reply to: Burger and Social Media icons position on Mobile view #1495508

    Hi,

    Thank you for the inquiry.

    Try this css code to adjust the color and font size of the submenu items.

    .html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul li ul a {
        color: rgba(255,255,255) !important;
        font-size: 0.8rem;
    }

    The menu items with submenus should have angled brackets (>) by default.

    Best regards,
    Ismael

    in reply to: Framed Hi, Box around icon box with icon on left side #1495507

    Hi,

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

    Best regards,
    Ismael

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

    Hi,

    Thank you for the info.

    We have updated the code and confirmed that this removes the notices.

    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 );
        }
    
    }, 1 );

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Icons next to correct text #1495471

    Hi,

    Thank you for the update.

    Yes, you can change the page ID or apply a custom css class name to the elements. Please check the documentation for additional info.

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

    Best regards,
    Ismael

    in reply to: WP Store Locator / Enold Datenschutz / google Maps #1495470

    Hey Lars,

    Thank you for the inquiry.

    This is possible, but it will require modifications that are beyond the scope of our support. We recommend reaching out to the developers of the WP Store Locator plugin for further assistance.

    Best regards,
    Ismael

    in reply to: license renewal doesn’t work #1495469

    Hi!

    We updated the fix. Please try this instead:

    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 );
        }
    
    }, 1 );

    Best regards,
    Ismael

    in reply to: Multiple errors on pages and posts (analysis included) #1495468

    Hi!

    @everyone: We updated the temp fix. Please try this again:

    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 );
        }
    
    }, 1 );

    Best regards,
    Ismael

Viewing 30 posts - 31 through 60 (of 67,432 total)