• Hi,

    Just wanted to see if it’s possible to increase the threshold from 300px for images to be lazy loaded on WP Rocket plugin?

    Thanks,

    Richard

Viewing 1 replies (of 1 total)
  • I’m not affiliated with the plugin, but I found a solution several months ago. Try using this as a code snippet:

    function rocket_lazyload_custom_threshold( $threshold ) {
    	return 0;
    }
    add_filter( 'rocket_lazyload_threshold', 'rocket_lazyload_custom_threshold' );
Viewing 1 replies (of 1 total)
  • The topic ‘Increasing threshold’ is closed to new replies.