Forum Replies Created

Viewing 30 posts - 1 through 30 (of 63,979 total)
  • Author
    Posts
  • in reply to: 441 / 5.000 Looking for a recommendation for map software #1471545

    Hi,

    If you don’t accept them in the cookie banner, the map won’t be displayed.

    Have you tried setting the Enfold > Privacy & Cookies > Cookie Handling > Default Cookie Behavior settings to the first or second option? This will allow external services, including the map, to load even without accepting the cookie options.

    Best regards,
    Ismael

    in reply to: Issues with container height #1471544

    Hi!

    Please try to add this script in the functions.php file:

    function ava_custom_script()
    { ?>
        <script>
                (function ($) {
                    $(document).ready(function () {
                        $('details[open]').click(function () {
                            var tabId = $(this).closest('.av-layout-tab').attr('id');
                            console.log(tabId)
                            if (tabId) {
                                var targetToggle = $('[aria-controls="' + tabId + '"]');
                                console.log(targetToggle)
                                if (targetToggle.length) {
                                    setTimeout(function () {
                                        targetToggle.trigger('click');
                                    }, 1000);
                                }
                            }
                        });
                    });
                }(jQuery));
        </script>
        <?php
    }
    add_action('wp_footer', 'ava_custom_script', 99);

    Thank you for your patience.

    Regards,
    Ismael

    in reply to: 441 / 5.000 Looking for a recommendation for map software #1471542

    Hi,

    Thank you for the update.

    Unfortunately, this is the only option included in the theme aside from Google Maps. You may need to look for another plugin or map library if OpenStreetMap doesn’t meet your needs. Why can’t you use Google Maps?

    Best regards,
    Ismael

    in reply to: Upgrade WordPress 6.7 – Problems with the LayerSlider #1471540

    Hey Beat,

    Thank you for the inquiry.

    We may need to login to the site in order to properly check the issue. Please provide the login details in the private field. In the meantime, try to toggle or temporarily disable the Enfold > Performance > File Compression settings. Let us know of the result.

    Best regards,
    Ismael

    Hi,

    UPDATE: Looks like the Autoptimize plugin doesn’t have the “delay JavaScript execution” option, but you can try disabling the compression options of the cache plugin and use the Autoptimize settings instead. Let us know of the result.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. We are still not sure what is causing this issue. Have you tried using a different plugin for the “delay JavaScript execution” feature, such as Autoptimize? You can also compress the scripts and stylesheets with this plugin.

    Best regards,
    Ismael

    in reply to: Field group of SCF showing in blog archive #1471531

    Hey ravesteynfonds,

    Thank you for the inquiry.

    Please try to add this filter in the functions.php file to exclude the acf-field-group post type from the blog grid:

    function avia_post_slide_query_mod($query, $params) {	
        foreach($query['post_type'] as $key => $value) {
            if( $value == 'acf-field-group' ) {
                unset($query['post_type'][$key]);
            }      
        }
    
        return $query;
    }
    add_filter('avia_post_slide_query', 'avia_post_slide_query_mod', 10, 2);

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    The page can’t be scrolled due to this css rule, which is applied after adding an item to the cart:

    body.xoo-wsc-cart-active, html.xoo-wsc-cart-active {
        overflow: hidden!important;
    }

    You can override it with the following css code:

    body.xoo-wsc-cart-active, html.xoo-wsc-cart-active {
        overflow: auto!important;
    }

    Best regards,
    Ismael

    in reply to: 441 / 5.000 Looking for a recommendation for map software #1471529

    Hi,

    Please check this documentation for more info about the OpenStreetMap feature: https://kriesi.at/documentation/enfold/openstreetmaps-leaflet-maps/

    Best regards,
    Ismael

    in reply to: Recommended Plugins Alongside Enfold #1471528

    Hey desquid66,

    Thank you for the inquiry.

    Is there any plugins that conflict with Enfold?

    Yess there are plugins that could potentially cause conflicts not only with the theme but with any theme. However, you should still be able to use SEO plugins like Yoast or RankMath without any issues with the Enfold theme. Let us know if you encounter any issues.

    Best regards,
    Ismael

    in reply to: Left side menu layout #1471527

    Hey icarogioiosi,

    Thank you for the inquiry.

    The size of the logo will depend on the uploaded image, but we can adjust it with css. Unfortunately, there are no available options to adjust the width of the menu or the line spacing between the menu items, but again, we can adjust these with css.

    Example:

    .html_header_sidebar #top #header {
        width: 400px;
    }
    
    .html_header_left #main {
        margin-left: 400px;
    }
    
    .html_header_sidebar #header .av-main-nav > li > a {
        line-height: 2em;
        height: auto;
        padding: 30px 3px;
        margin: 0 auto;
    }

    Best regards,
    Ismael

    in reply to: Page Edits Stopped Saving (At Specific Point) #1471526

    Hi!

    Thank you for the info.

    The same notification still occurs after updating the theme files:

    “”nfo – Session Storage: Browser memory limit reached or blocked by browser. Your Browser does not offer enough session storage to save more steps for the undo/redo history.” “Failed to execute ‘setItem’ on ‘Storage’: Setting the value of ‘aviaenfoldchild1043753’ exceeded the quota.”

    We are still unable to update the page. When we copy the content of the Journey page from the live site to a local installation, the same error occurs, but we were able to update the page. This is with the default 6.0.6 version, without the modifications mentioned above. We have not encountered this issue before. We’ll give you an update as soon as we find anything.

    Cheers!
    Ismael

    in reply to: FIXED theme error #1471524

    Hey Munford,

    Great! Glad to know that the issue has been resolved. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Depricated function errors showing in front end #1471523

    Hey Anne,

    Thank you for the inquiry.

    You may need to update the theme to the latest version to remove the notification. Please note that this warning is not critical and will not affect the site in any way. If you prefer, you can hide it by setting WP_DEBUG_DISPLAY to false in your wp-config.php file.

    // https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/#wp_debug_display

    Best regards,
    Ismael

    in reply to: Blanc Template: Veröffentlichung fehlgeschlagen. #1471380

    Hi,

    Thank you for the info.

    In the screenshot, we noticed that you’re toggling the options in the Layer Slider metabox. What happens when you select the Blank – No Header, No Footer template in the Page > Template settings?

    // https://wordpress.com/support/templates/

    Best regards,
    Ismael

    in reply to: Full image on single post #1471379

    Hi,

    Thank you for the info.

    We may need to adjust the default size of the thumbnails. Please add this code in the functions. file:

    function avf_customization_modify_thumb_size( $size ) {
          $size['entry_without_sidebar'] = array( 'width' => 9999, 'height' => 9999 );
          $size['entry_with_sidebar'] = array( 'width' => 9999, 'height' => 9999 );
          return $size;
    }
    
    add_filter( 'avf_modify_thumb_size', 'avf_customization_modify_thumb_size', 10, 1 );
    

    Then use the this plugin to regenerate the thumbnails.

    // https://wordpress.org/plugins/regenerate-thumbnails/

    Please make sure to create a site backup before proceeding.

    Best regards,
    Ismael

    in reply to: Search form AJAX results contains hidden products #1471377

    Hi,

    Great! Glad to know that you managed to fix it. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Search form AJAX results contains hidden products #1471373

    Hi,

    We adjusted the filter a bit. Please try it again and let us know of the result.

    Best regards,
    Ismael

    in reply to: Before and After Bug issue #1471372

    Hey Jason,

    Thank you for the inquiry.

    Looks like the whole #intro section gets highlighted when you try to slide the arrows. Please try adding this css code:

    #intro {
        user-select: none !important;
    }

    Make sure to purge the cache or remove the browser history before checking.

    Best regards,
    Ismael

    in reply to: The header area on my home page is a mess #1471370

    Hey mhannondesign,

    Thank you for the inquiry.

    We don’t see an additional menu in the header. Did you figure out the issue? If not, please provide a screenshot of the issue using platforms like Savvyify, Imgur or Dropbox.

    Best regards,
    Ismael

    in reply to: Page Edits Stopped Saving (At Specific Point) #1471369

    Hi,

    Unfortunately, we are not yet sure what is causing the issue, but it seems to be related to an entry in the browser’s session storage. If possible, please provide the FTP details in the private field. We’ll get back to you as soon as we find anything.

    Best regards,
    Ismael

    Hi,

    Thank you for following up.

    Are there any other fields or settings that you can’t access aside from the Enable Cookie Consent Message settings? Since you’ve already toggled it on Firefox, you can just leave it as is for now and get on with the other settings.

    Best regards,
    Ismael

    in reply to: text below logo #1471367

    Hi,

    UPDATE: We found an invalid code in the Quick CSS field and corrected it. Please make sure to purge the cache before checking the page.

    Best regards,
    Ismael

    in reply to: text below logo #1471366

    Hi,

    Thank you for the update.

    Where did you add the css code? Please try to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.

    Best regards,
    Ismael

    in reply to: Change Portfolio item Font color depending on category #1471365

    Hey Tilman,

    Thank you for the inquiry.

    You can adjust the style of the titles in the second magazine element using this csscode:

    #top .main_color .av-m3hnr7qq-27f7d867790b3f7b7d88721dc4cc0bcf .av-magazine-title a, #top .main_color .av-m3hnr7qq-27f7d867790b3f7b7d88721dc4cc0bcf .av-magazine-title {
        color: blue;
    }

    The class name “av-m3hnr7qq-27f7d867790b3f7b7d88721dc4cc0bcf” is a unique identifier automatically generated by the theme for this specific magazine element. You can also apply your own custom css class name in the Advanced > Developer Settings panel.

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

    Best regards,
    Ismael

    in reply to: Text after TAX field, or after tax calcualtion #1471364

    Hey Illingco,

    Thank you for the inquiry.

    Would you mind providing a screenshot of the area where you need this text? You can use platforms like Savvyify, Imgur, or Dropbox to upload and share the screenshot.

    Best regards,
    Ismael

    in reply to: Description Tab formatting #1471363

    Hey bemodesign,

    Thank you for the inquiry.

    There is a custom class name, “a-spacing-mini,” that reduces the space between the list items. How did you add this? You can try this css code to override the default style:

    ul.a-unordered-list.a-vertical.a-spacing-mini li {
        margin-bottom: 20px;
    }

    Best regards,
    Ismael

    in reply to: Lightbox: disable click through other images on page #1471362

    Hey bb,

    Thank you for the inquiry.

    Try editing the Icon element and apply a Custom CSS Class (e.g., av-popup-no-nav) in the Advanced > Developer Settings toggle. Then, add this code to the functions.php file:

    function ava_popup_init() { ?>
    <script type="text/javascript">
    jQuery(document).ready(function(){
        jQuery('.av-popup-no-nav, .av-popup-no-nav a').magnificPopup({
            type: 'image',
            midClick: true, // Allow opening popup on middle mouse click
            navigation: {
                next: false, // Disable next arrow
                prev: false  // Disable prev arrow
            }
        });
    });
    </script>
    <?php }
    
    add_action('wp_head', 'ava_popup_init');
    

    Best regards,
    Ismael

    in reply to: Form deosn’t work anymore (SOLVED) #1471361

    Hi,

    Great! Glad to know that you managed to solve the issue. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day!

    Best regards,
    Ismael

    in reply to: Change backgroundcolor of the secondary menu #1471360

    Hey langanger,

    Thank you for the inquiry.

    You can change the background color of the top header by adjusting the value of the Enfold > General Styling > Logo Area > Alternate Background Color field. You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.

    Best regards,
    Ismael

Viewing 30 posts - 1 through 30 (of 63,979 total)