Hi, glad to hear!
Excerpts can not contain links, so you would need to modify content.php with a child theme to show the full content instead to allow links:
Locate this in content.php:
<?php if (get_theme_mod('excerpt-length','20') != '0'): ?>
<div class="entry excerpt">
<?php the_excerpt(); ?>
</div><!--/.entry-->
<?php endif; ?>
And replace with:
<div class="entry excerpt">
<?php the_content(); ?>
</div><!--/.entry-->
There may be issues by doing this, but it should give you a start.
Thank you Alexander for the quick reply. I found an easy solution by installing the plugin Advanced Excerpts, works great with the theme. Looks great now really loving this design style!
Great, didn’t know that! Glad you fixed it.