Shouldn’t load lazy on comment replies
-
With the reply link page repload and lazy load again comments block.
I have fixed it with the filter:
// Don't lazy load comments on reply add_filter( 'llc_can_lazy_load', function( $can_lazyload ) { return isset( $_GET['replytocom'] ) ? false : $can_lazyload; } );
But I think the default behaviour should be to direct load comments for the reply form.
Regards
- The topic ‘Shouldn’t load lazy on comment replies’ is closed to new replies.