Site logo

Archived topic

Fade In Effect for Archive Pages?

3 replies · Started by Ian on February 14, 2021

Viewing posts 1–4 of 4

So, I have been able to disable Beaver Themer's control of archive layouts. Using all GPP for archive pages now. But it seems there is a Fade In effect on pageload. Is this right? How do I disable this? Added private URL.

Hi there,

Give this a shot:

add_filter( 'generate_blog_masonry_init', function( $args ) {
    $args['visibleStyle'] = false;
    $args['hiddenStyle'] = false;

    return $args;
} );

Let me know :)

Hey Tom, thanks! That worked. I am half in on Fade In's. Using it on a few sites but some sites are super fast loading and I want to show case it! Warmed up the cache and pages load quick now. Appreciate it!

Glad I could help! :)

This archived topic is closed to new replies.