Tagged: 

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1028444

    Hi there,

    I am using Enfold for a lot of websites, so first of all thank you for your outstanding work!

    I just found a bug on a fresh installation, that uses a Masonry Gallery and Masonry Portfolio. Both seem to have problems when resizing (elements stack up). When using the taxonomy function for the Portfolio Masonry, elements that don’t match the selected taxonomy disappear but the entire masonry is not resorted again (the removed element just leaves a white space behind).

    I am using the current version of Enfold with NO OTHER PLUGIN active. I disabled all caching in the performance options.

    Could any of the moderators please have a look? See credentials below. Thank you so much!

    #1029126

    Can nobody help?

    #1029225

    Hi henningtillmann,

    Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    Please refrain from bumping or replying to your own thread because it gets pushed back to the end of the queue and moderators won’t be able to provide a response immediately. Please be patient while we go through the rest of the queue. Thank you for your understanding.

    Best regards,
    Victoria

    #1029247

    Hi Victoria,

    I am sorry that I replied to my own thread. I know that the support here is outstanding and I was kind of worried that it took two days. Although it seemed like I was a bit too pushy in that moment, that was not my intention!

    Please see login details below. All content is strictly confidential at the moment. I know you won’t, but please do not use any of the content elsewhere or copy it. Thank you for your help!

    #1030867

    I know that I should not reply to this thread, but the problem is that the website will go live tomorrow and the problem is still there. :-(.

    #1031061

    Hi,

    I’m sorry for the late response. This script should help fix the “stacking up” issue.

    // https://kriesi.at/support/topic/parallax-bug-on-background-images-with-pictures/#post-1013455

    I’m not really sure if I understand the question regarding the “taxonomy”. Can you provide a screenshot of that? What do you mean by “taxonomy function”?

    Best regards,
    Ismael

    #1031198

    Hi Ismael,

    I added the script. No change. It seems like there is no jQuery available?

    And why does the problem exist in general? I am using vanilla Enfold, no changes, no plugins, no fancy customizations? Shouldn’t it work right out of the box?

    We removed the taxonomy sorting, so you cannot see it anymore. Because it didn’t work.

    #1032284

    Hi henningtillmann,

    Best regards,
    Victoria

    #1032584

    Victoria, I added the script because Ismael recommended adding this scirpt!

    #1032962

    Hi,

    And why does the problem exist in general?

    The gallery script fails to calculate the actual or proper position of the gallery items because the images load later than expected. This issue usually happens on a gallery with a lot of images. The script above should force the gallery items to reposition until the site is fully loaded.

    Victoria, I added the script because Ismael recommended adding this scirpt!

    Did you set jQuery to load in the footer? Please check the Enfold > Performance panel.

    I adjusted the code a bit and readded it in the functions.php file :

     function ava_enqueue_custom_script() {
        if ( wp_script_is( 'avia-default', 'registered' ) ) {
            wp_add_inline_script( 'avia-default', "(function($){	
                var int = window.setInterval(function(){
                    console.log('tick');
                    $(window).trigger('resize');
                    $(window).trigger('av-content-el-height-changed');
                }, 1000);
    
                $(window).on('load', function() {
                    setTimeout( function() {
                        clearInterval(int);
                    }, 5000 );  
                });
            })(jQuery);" );
        }
     }
     add_action( 'wp_enqueue_scripts', 'ava_enqueue_custom_script', 9999);

    Let us know if it’s working properly.

    Best regards,
    Ismael

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.