Hilary C.
|
Friday 11 March 2005 9:01:57 am
Thank you :):):) I did that (adding the checkbox with id enable_comments back to the article class), also added this to site.ini.append:
[EzArticleMain] UserComments=enabled (I got this from another person's post on here, hopefully it applies to the version of eZpublish I'm using) And added permissions to my user roles to read, create and edit comments. I also verified that my articles now have the Enable Comments checkbox, with it defaulting to checked. And of course I deleted all caches. All that and I don't see anything showing up different on the site at all -- not even an error message. Please help?
|
Jack Rackham
|
Tuesday 15 March 2005 8:29:44 am
Check that your "enable comment" attribute has the same identifier as in your override/full/article_template(comment section). Normally something like this
{section show=$node.object.data_map.enable_comments.data_int}
<div class="articlecomments">
{let message_list=fetch( content, list, hash(
parent_node_id, $node.object.main_node_id,
sort_by, array( published, false() ),
limit, $page_limit,
offset, 0,
class_filter_type, include,
class_filter_array,array( 'comment' ) ) )}
{section show=$message_list}
<h2>{"Kommentarer"|i18n("design/news/layout")}</h2>
{section name=Comment loop=$message_list}
{node_view_gui view=line content_node=$:item}
{/section}
{/section}
<h2>{"Skriv en kommentar"|i18n("design/news/layout")}</h2>
<div class="buttonblock">
<form method="post" action={"content/action"|ezurl}>
<input type="hidden" name="NodeID" value="{$node.main_node_id}" />
<input type="hidden" name="ClassID" value="13" />
<input class="button" type="submit" name="NewButton" value="Ny kommentar" />
</form>
</div>
{/let}
</div>
{/section}
Then go 'User accounts' - 'Roles' - 'Anonymous'
Add
- content create Class( Comment )
- content edit Class( Comment ) - content versionread Class( Comment ) , Owner( Self )
|