I have a solution for you that puts a Comments link next to the publish date, author, etc on the blog home summaries (and full posts such as yours).
IMPORTANT: Because I’m going to have you edit a theme file, make sure you keep a backup copy of the file we will change “template-tags.php”. Normally changes like this would be done with a child theme, but this will be part of the next update.
(1) Go to Appearance >> Editor, and then open the file “template-tags.php”. When it’s open, copy all that code and paste it into a text file somewhere safe. Just in case we need to revert back to it if anything goes wrong.
(2) With the template-tags.php file open in the editor, slowly scroll down and look for this line of code:
if( esc_attr(get_theme_mod( 'show_edit', 1 ) ) ) {
edit_post_link( esc_html__( 'Edit this Post', 'longevity' ), '<span class="edit-link post-meta">', '</span>' );
}
}
Copy this code here:
if ( ! is_singular() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) {
if ( esc_attr(get_theme_mod( 'show_comments_link', 1 )) ) :
echo '<span class="comments-link">';
comments_popup_link( sprintf( __( 'Leave a comment<span class="screen-reader-text"> on %s</span>', 'longevity' ), get_the_title() ) );
echo '</span>';
endif;
}
Then, just ABOVE this line of code…
`if( esc_attr(get_theme_mod( ‘show_edit’, 1 ) ) ) {‘
…paste my code there. Click “Update File” and then check the front of your site blog and see if the comments link shows up and is functional. It should sent the reader to the full post view that contains the comment form and comments (if any).
If anything goes wrong, then clear out the code from the template-tags.php and then copy and paste the backed up copy you made before we started, then click Update File. That will put it back to its original code.