Hi richwagner
The plugin gallery is the same as a WordPress gallery. Your theme or another plugin is opening the gallery (images) with Javascript. Try changing the gallery css class with this in your (child) theme’s functions.php file.
add_filter( 'related_posts_by_taxonomy_gallery', 'rpbt_remove_gallery_class' );
function rpbt_remove_gallery_class( $args ) {
$args['gallery_class'] = '';
return $args;
}
Check if it works with that. You might lose some styling of the gallery. We will fix that later.
btw:
consider creating a child theme instead of editing your theme directly – if you upgrade the theme all your modifications will be lost. Or create a plugin with the code above.