Hi guys,
Option 1: I would like to not have the titles of galleries link to the gallery page but also to the lightbox, just like the thumbnail does.
Option 2: I would like to remove the link of the title so people can only click on the featured image of the gallery to open the lightbox.
The 2nd option I already created myself in sf-galleries.php to change this line at 183:
$gallery_items_output .= '<h3 class="gallery-item-title" itemprop="name headline"><a href="' . get_permalink() . '">' . $item_title . '</a></h3>' . "\n";
in:
$gallery_items_output .= '<h3 class="gallery-item-title" itemprop="name headline">' . $item_title . '</h3>';
}
But somehow when I place sf-galleries.php in my child theme it won’t load.
So do you have a solution?