In your support video you only showed static headings for the galleries and albums, I have now added dynamic headings.
Album Title (Top of every group of galleries)
$albumTitleObject = get_term_by( ‘id’,implode($category), ‘aigpl_cat’ );
$albumTitleName = $albumTitleObject->name;
<h1><?php echo $albumTitleName ?></h1>
Gallery Title (placed above the return to gallery link)
echo “<h1>”.get_the_title($post_ids).”</h1>”;