Hi @jamesscholes
There is a function on line 152
in comments.php
file called: wp_less_is_more__collapse_comments_list ()
that determines whether the list of comments is displayed or hidden.
There are several conditions that determine whether comments are collapsed or not (please read that function description on line 713
to 736
in functions.php
file).
At this time just remove that function and place there: in
, as an additional class.
So, for example, now you have this:
<div id="collapseListComments" class="panel-collapse collapse <?php
echo wp_less_is_more__collapse_comments_list();
?>" role="tabpanel" aria-labelledby="collapseListComments" aria-expanded="true">
And you should have that:
<div id="collapseListComments" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="collapseListComments" aria-expanded="true">
Be aware that this is a class selector and you should be careful to close it properly.
For future I will consider adding this option to the customizer or removing it from the code, if it is unnecessary.
You decide.
Cheers! ??