comments

Comments element with form to post a comment

<module type="comments" /> 

Module parameters

You can set those paramters via the module settings or inline

parameter description
content-id the id of the content to get comments for, if you don't set this it will use the current content id
no-form if you set this parameter the comments posting form will not be shown

Examples

Display comments for blog post

<?php //show comments for content ?>
<module type="comments" content-id="4" />

Hide the comments post form

<?php //show comments for content ?>
<module type="comments" content-id="11" no-form="true" />
The documentation is under development. Help us by editing this page.