General Actions:
| Question | How do I display comments associated with a page on that page? |
| Answer |
I don't understand the question. By default comments are shown at the bottom of each page in a box which you can show using one click.
If you want to have the comments start out expanded by default, edit
commentsinline.vm in the skins directory and change
document.getElementById("comments").className += " hidden";
to
document.getElementById("comments").className += " exp";
|