CodeCanyon

Simple Website Comments

How to reverse the order of comments.

On about line 212 of widget-comments.php where you see this code:

return $existing_data;

change it to this code:

if($parent_comment_id===false){
  $existing_data = array_reverse($existing_data,true);
}
return $existing_data;

How to swap comment list and form around

Look for these two lines of code on about line 950

<?=$comment_list;?>
<?=$post_comment;?>

Swap them around.

by
by
by
by
by