That is how it’s supposed to work. If you want to include the sermon title after the sermon notes link, you will need to edit your content-sermon-attachments.php
.
Read this to get an idea on how to edit the file. https://wpforchurch.com/my/knowledgebase/69/Modifying-the-Excerpt-of-a-Sermon-Archive.html
Once you’ve found the content-sermon-attachments.php
file, you will need to find this:
<a href="<?php echo get_wpfc_sermon_meta( 'sermon_notes' ); ?>"
class="sermon-attachments"
download="<?php echo basename( get_wpfc_sermon_meta( 'sermon_notes' ) ); ?>">
<span class="dashicons dashicons-media-document"></span>
<?php echo __( 'Notes', 'sermon-manager-for-wordpress' ); ?>
</a>
Use this instead:
<a href="<?php echo get_wpfc_sermon_meta( 'sermon_notes' ); ?>"
class="sermon-attachments"
download="<?php echo basename( get_wpfc_sermon_meta( 'sermon_notes' ) ); ?>">
<span class="dashicons dashicons-media-document"></span>
<?php echo __( 'Notes: ', 'sermon-manager-for-wordpress' ); ?>
<?php the_title(); ?>
</a>