Hi David,
You can make fold comment display, please do as following:
– Open the file “total.php” in the folder “componentscom_jacommentthemesdefaulthtmlcomments”, then change this line code:
<h2 class="componentheading"><span id="jac-number-total-comment"><?php echo $this->totalAll; ?> <?php if($this->totalAll > 1){echo JText::_("Comments");}else{echo JText::_("Comment");}?></span>
To
<h2 class="componentheading"><span id="jac-number-total-comment"><?php echo $this->totalAll; ?> <?php if($this->totalAll > 1){echo JText::_("Comments");}else{echo JText::_("Comment");}?></span>
</h2>
<br>
<span id="show_hide_comments" onClick="showHideComments()"><?php echo JText::_("See the comments");?></span>
– Now create new js function – showHideComments() in the file “ja.comment.js” in the folder “componentscom_jacommentassetjs”:
function showHideComments(){
/*this function will fold & unfold the comments zone*/
}
Good luck!!