Forum Replies Created

Viewing 30 posts - 961 through 990 (of 66,661 total)
  • Author
    Posts
  • in reply to: Timeline with bugs in smaller viewports? #1484274

    Hey slikslok,

    Thank you for the inquiry.

    You can set the display property to block, but the placement of the date would be incorrect. If you really need the date to display on mobile view, we recommend changing the Styling > General Styling > Milestone Placement to Left or Right, instead of Alternate.

    Best regards,
    Ismael

    in reply to: Adjust field choice in blog post grid view element #1484273

    Hi,

    It’s possible to create custom builder elements or shortcodes in the child theme, but you’ll need to implement them on your own because this is beyond the scope of support. You can find more information in the documentation below:

    https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    You can use the enfold/config-templatebuilder/avia-shortcodes/blog element as a reference or starting point.

    Best regards,
    Ismael

    in reply to: Image, Gallery like This #1484272

    Hi,

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

    Best regards,
    Ismael

    in reply to: multi author not displaying second author #1484271

    Hi,

    “Multi-author” is one of the available styles for the blog layout. It doesn’t actually mean “multiple authors”, if that’s what you were expecting. To integrate the plugin features into the template, you may need to modify the includes > loop-index.php file.

    Best regards,
    Ismael

    Hi,

    You’re welcome! Good to know you found a plugin that meets your requirements. If you have any more questions, feel free to open another thread.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Advanced Builder Gray Screen #1484269

    Hi,

    Thank you for the update. With entypo-fontello disabled, you won’t be able to use the default icons on the page. You will need to replace them with images or SVG icons manually. Unfortunately, it’s not possible to automatically inject SVG icons as a replacement for the icon fonts.

    Best regards,
    Ismael

    in reply to: Widget “Enfold Table of Contents” & “Sites” #1484268

    Hi,

    What do you mean by “child sites”? Please provide a screenshot using platforms like Savvyify, Imgur or Dropbox.

    Best regards,
    Ismael

    in reply to: Animation on content slider #1484267

    Hi,

    As mentioned above, it’s not possible to disable the animation because it is required for the slides to switch properly. You may need to use a different slider from a third-party extension.

    Best regards,
    Ismael

    in reply to: Question on Masonry #1484266

    Hi,

    You may have forgotten to include the password. Please post the info in the private field.
    Have you tried using ?sort_tag=inbound?

    Make sure to update this line with the correct parameter name.

    const tag = urlParams.get("tag");
    

    Best regards,
    Ismael

    in reply to: Animation on content slider #1484211

    Hi,

    Yes, that could work, but you can’t set it to 0 because it will cause the transition to fail. Please try this css code:

    #top .avia-content-slider, #top .avia-content-slider-inner, #top .avia-content-slider-inner .slide-entry-wrap {
        transition: opacity 0.0001s !important;
    }

    Best regards,
    Ismael

    Hi,

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

    add_filter('avf_font_manager_load_font', function($icon_font) {
        return '';
    }, 10, 1);
    

    Please note that this will completely disable the default fontello icons.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Animation on content slider #1484207

    Hi,

    No, it’s not possible because the transition is what displays the next slide and hides the other slides in the slider — especially when you select the fade-in transition. Selecting sideward should minimize the effect.

    Best regards,
    Ismael

    Hey David,

    Thank you for the inquiry.

    Have you tried updating the logo with your own? You may also need to adjust the Header Size settings in the Enfold > Header > Header Layout tab. We’d be happy to check this once the site goes live.

    Best regards,
    Ismael

    in reply to: Hiding Image on Mobile not working #1484205

    Hey Madison,

    Thank you for the inquiry.

    We are not seeing the issue on our end. Would you mind providing a screenshot? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot.

    Best regards,
    Ismael

    in reply to: full page overlay menu doesn’t work properly #1484204

    Hey M,

    Thank you for the inquiry.

    The overlay menu seems to be working correctly when we checked. Did you figure out the issue?

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Menu Layout Advice #1484203

    Hi,

    If you can provide the login details, we’ll try to add the modification. Please post the details in the private field.

    Best regards,
    Ismael

    in reply to: Website #1484202

    Hey Karol,

    Thanks for reaching out.

    Unfortunately, we do not offer phone or chat support, but you can find us on the support forum. Please register an account using your purchase code.

    https://kriesi.at/support/register/

    Once registered, you can open new inquiries using the form below.

    https://kriesi.at/support/forum/enfold/#new-post

    Let us know if you need more info.

    Best regards,
    Avia

    in reply to: Adjust field choice in blog post grid view element #1484201

    Hey Jason,

    Thank you for the inquiry.

    Which field are you trying to select? This is not possible at the moment, but you can try modifying the blog posts query using the avia_post_slide_query filter.

    Example:

    add_filter( 'avia_post_slide_query', 'avf_custom_avia_post_slide_query', 10, 2 );
    function avf_custom_avia_post_slide_query( $query, $params ) {
        $query['meta_query'] = [
            [
                'key' => 'your_acf_field_key',  
                'value' => 'desired_value',     
                'compare' => '=',            
            ]
        ];
    
        $query['orderby'] = 'date';
        $query['order'] = 'ASC';
    
        return $query;
    }

    Best regards,
    Ismael

    in reply to: multi author not displaying second author #1484200

    Hey williamslyd,

    Thank you for the inquiry.

    It’s possible that this will require additional adjustments to the post templates. Unfortunately, we do not provide support for third-party plugins. You may need to contact the plugin author for additional assistance.

    Best regards,
    Ismael

    in reply to: having trouble with google maps api key #1484199

    Hey Tina,

    Thank you for the inquiry.

    We tried logging in but the wp-admin and wp-login pages are inaccessible or have been disabled. Please reactivate the login pages or provide the custom login URL.

    Best regards,
    Ismael

    in reply to: Animation on content slider #1484197

    Hi,

    Unfortunately, it’s not possible to completely disable the default animation of the content slider because it is required for transitions or slide switching.

    Best regards,
    Ismael

    in reply to: Media files duplicating #1484196

    Hey Helmut,

    Thank you for the inquiry.

    Those are the thumbnails registered by the theme. If you need to remove them, be sure to create a site backup, then use the remove_enfold_image_sizes function provided in this thread: https://kriesi.at/support/topic/prevent-auto-multi-image-generation/#post-1431800

    Best regards,
    Ismael

    in reply to: Lightbox settings #1484195

    Hi,

    i put this instead and it seems to be OK:

    We tested it on our end but it didn’t work. Try to add this script in the functions.php file instead:

    add_action( 'wp_footer', 'av_custom_script_mod', 100 );
    function av_custom_script_mod() {
        ?>
        <script>
        jQuery(document).ready(function($) {
            $(document).on('click', '.lightbox-added', function () {
                setTimeout(function() {
                    if ($('body').hasClass('mfp-zoom-out-cur')) {
                        $('html').css('overflow', 'hidden');
                    }
                }, 100); 
            });
    
            $('.lightbox-added').on('mfpClose', function () {
                $('html').css('overflow', '');
            });
        });
        </script>
        <?php
    }
    
    

    Best regards,
    Ismael

    Hi,

    FacetWP is one of the most advanced filtering and sorting plugins available for WordPress. If it doesn’t meet your requirements, there may not be better alternatives. However, you can try the plugins listed below.

    https://wordpress.org/plugins/filter-everything/
    https://wordpress.org/plugins/ymc-smart-filter/
    https://wordpress.org/plugins/search-filter/

    Best regards,
    Ismael

    in reply to: Magazine type size is way too big. #1484193

    Hi,

    The site is not using a child theme. We recommend activating the default child theme to preserve the modifications during theme updates. Please refer to the documentation below.

    https://kriesi.at/documentation/enfold/child-theme

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    Would you mind providing a screenshot? As mentioned in the previous thread, this is a known issue on iOS devices, so disabling the fixed background effect is recommended. Have you tried removing the selector “.avia_mobile”? You can also try setting the “background-size” property from “cover” to “contain”.

    Best regards,
    Ismael

    in reply to: Advanced Builder Gray Screen #1484191

    Hi,

    Thank you for the update.

    The suggested filter does allow the font to load, but since the path is incorrect, the font list won’t load, leading to a 404 error. Try to use this filter instead:

    add_filter('avf_font_manager_load_font', function($icon_font) {
        return '';
    }, 10, 1);

    Best regards,
    Ismael

    in reply to: “Load more” on a page possible? #1484189

    Hey goldengate415,

    Thank you for the inquiry.

    There are elements with this option, such as the Masonry element or pagination for Blog Posts, but it is not available for an entire page. For text elements, you can use the Fold/Unfold option but it may not have any significant effect on performance. If you have a fairly large homepage, consider moving some content to subpages and reduce the use of images. If you can provide the site URL, we’ll try to check the site further.

    Best regards,
    Ismael

    in reply to: special header does not work! #1484188

    Hey Faatje79,

    Thank you for the inquiry.

    We may need to log in to the site to properly check the issue. Please provide the site URL and login details in the private field. Do you have version 7.1 of the theme?

    Best regards,
    Ismael

    Hey slikslok,

    Thank you for the inquiry.

    You may need to use a smaller logo or limit the number of items in the main menu. To adjust the size of the logo, try to add this css code:

    .logo img, .logo svg {
        max-width: 400px;
        top: 40px;
    }

    You can also set the main menu to display as icon instead of text (Main Menu > General > Menu Items For Desktop).

    Best regards,
    Ismael

Viewing 30 posts - 961 through 990 (of 66,661 total)