This CSS snippet will remove the “Post a comment” link that must be clicked to display the comment form below a lesson, topic or quiz in focus mode, and then always show the comment form as soon as the page loads.
#ld-comments-post-button {
display: none;
}
.learndash-wrapper .ld-focus-comments #ld-comments-form.ld-collapsed {
display: block;
}