Home › Forums › WoodMart support forum › Feature Request: Exclude RSS Feed from lazy loading › Reply To: Feature Request: Exclude RSS Feed from lazy loading
February 13, 2020 at 9:10 am
#173128

Artem Temos
Keymaster
Hello,
Thank you so much for purchasing our theme and contacting our support center.
Try to add the following PHP code snippet to the child theme functions.php file to do this
if( ! function_exists( 'woodmart_lazy_loading_rss_deinit' ) ) {
function woodmart_lazy_loading_rss_deinit() {
if ( is_feed() ) {
woodmart_lazy_loading_deinit(true);
}
}
add_action( 'wp', 'woodmart_lazy_loading_rss_deinit', 10 );
}
Regards