• Resolved kaho2912

    (@kaho2912)


    I have installed Lazy Load on my wordpress page and noticed, that all soliloquy sliders I am using are broken now. Slider images seem to be lazy loaded even though your website states, that soliloquy should be excluded from lazy loading.

    I am using Autoptimize and Cache Enabler, too, but deaktivating Autoptimize and clearing caches didn’t change anything. Slider was still broken.

    It is working when I deactivate images option in lazy load though.

    Could you give me a hint on what I am doing wrong?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor WP Rocket

    (@wp_rocket)

    Hi,

    You can use the following code to prevent the issue:

    add_filter( 'rocket_lazyload_excluded_attributes', function( $excluded_attributes ) {
        $excluded_attributes[] = 'soliloquy-image';
    
        return $excluded_attributes;

    } );

    • This reply was modified 5 years, 9 months ago by WP Rocket.
    Thread Starter kaho2912

    (@kaho2912)

    Thank you.

    Works like a charm ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Problems with Soliloquy’ is closed to new replies.