1

Is it possible to configure maximum comment thread depth? If not then how to set this limit in the code?

asliwinski
  • 1,662
  • 3
  • 21
  • 38

1 Answers1

0

Eventually, I have obtained the effect using just CSS. Example of one level of depth:

div.comments > ul.comment-list-wrapper > li.comment-wrapper > ul.comment-list-wrapper ul {
    margin-left: 0px;
}
asliwinski
  • 1,662
  • 3
  • 21
  • 38