Hi,
I am currently able to display comments on the index/category pages of my site by embedding a comments template and passing the weblog and entry id variables as is demonstrated in the wiki.
My main template contains:
{embed="includes/homepagecomments" comment_total="{comment_total}" entry_id="{entry_id}" title="{title}" url_title="{url_title}"}My comments template contains:
{exp:comment:entries weblog="{my_weblog}" limit="20" orderby="date" sort="desc" entry_id="{embed:entry_id}"}
{url_as_author} said: {comment} <span class="posteddate">on {comment_date format='%m.%d.%y'}</span>
{/exp:comment:entries}However, adding pagination to the mix on the primary template creates erratic results. Should this functionality be possible? Do I need to resort to a direct query in order for it to work?
Thanks in advance,
Jess