Hello,
Try to add the following PHP code snippet to the child theme functions.php file to do this
function woodmart_disable_lazy_on_page() {
$current_page_id = get_queried_object_id();
if ( ! $current_page_id ) {
$current_page_id = get_the_ID();
}
$pages = [
107, 108,
];
if ( in_array( $current_page_id, $pages ) ) {
woodmart_lazy_loading_deinit( true );
}
}
add_action( 'wp', 'woodmart_disable_lazy_on_page', 1000 );
In the above code, you need to replace the values under the "$page"
array with the pages ids.
Regards.
Xtemos Studios.