You could try this:
In the ZpFocus theme folder find `header.php`.
There is this function:
`
<script type="text/javascript">
$(document).ready(function() {
$('#comment-toggle').click(function() {
$('#comments-block').slideToggle(600);
});
});
</script>
`
.
Change that to:
`
<script type="text/javascript">
$(document).ready(function() {
$('#comments-block').show();
$('#comment-toggle').click(function() {
$('#comments-block').slideToggle(600);
});
});
</script>
`
.
to start with comments visible.