Hi Adria,
You need to install the plugins to get the breadcrumbs effect. We have not added the gallery title in gallery page. We have designed our theme this way.Suppose if you are using two column gallery then to display gallery title goto theme folder-> library-> structure-> content-extension.php on line no 1042 and add this below code.
<?php if(is_home() || is_front_page()){?>
<h2 class="entry-title">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute();?>"><?php the_title(); ?></a>
</h2><!-- .entry-title -->
<?php }else{ ?>
<h1 class="entry-title">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute();?>"><?php the_title(); ?></a>
</h1><!-- .entry-title -->
<?php } ?>
Before making any changes first of all create a child theme and then only customize the code to be safe from data loss while updating to our new version.
Thank you!