This thread was helpful for me in remove the responsive-lightbox from all pages besides the page called ‘Gallery’.
Here’s the code that I included in the functions.php file:
function custom_rl_lightbox_args($args) {
if ( ! is_page( 'Gallery' ) ) {
return false;
}
return $args;
}
add_filter('rl_lightbox_args', 'custom_rl_lightbox_args');
Hopefully this helps others fix their own issues here. The plugin is great but when not needed it makes sense to remove the requests.