Module Specific Comments

gary.moncrieff
gary.moncrieff
@garymoncrieff
10 years ago
865 posts
Hey Guys

I am now tying to show comments on the front ends sections, I only want to show comments relevant to the said section. So in the news section (mediapro) I want to do something like this:-

    {jrCore_list module="jrComment" order_by="_created desc" limit="10" search="comment_module = jrBlog" search1="blog_category in Featured,Latest,Exclusive"  template="side_comments.tpl"}

Whenever I try to filter down by blog_category nothing gets returned, have also noticed same effect with new the site builder.
updated by @garymoncrieff: 05/29/15 05:25:33AM
michael
@michael
10 years ago
7,800 posts
you'll want to make sure the blog category case matches whats in the database, I'm guessing those capitals are throwing it out.
gary.moncrieff
gary.moncrieff
@garymoncrieff
10 years ago
865 posts
Hi Michael

That was my initial thought to but after checking it wasnt, ie a category called test with posts and comments returns no results either.
michael
@michael
10 years ago
7,800 posts
I'll take a look. Need to write some comments first, not many in my dev system.

Back soon.
michael
@michael
10 years ago
7,800 posts
It would be better to make a quick module to do this because its really processing logic rather than layout/design logic, but you can do this:

{jrCore_list module="jrBlog" limit="500" search="blog_category in featured,latest" template="null" assign="rows" return_keys="_item_id"}
{if is_array($rows)}
    {foreach $rows as $row}
        {$_ids[$row._item_id] = $row._item_id}
    {/foreach}
    {$wanted = implode(',', $_ids)}
{/if}
{jrCore_list module="jrComment" order_by="_created desc" limit="10" search="comment_module = jrBlog" search1="comment_item_id in $wanted"}

We cant get blog_* because we're searching on the Comment datastore and that info just isn't there. What is there is the item ids of the blogs, so first we get a list of item id's that correspond to the categories you are after.

We then reduce that list down to the distinct values using that foreach loop, then we ask for the comments where the comment_item_id is in the list of the ones that we want.

----------
I reckon a better way would be to make a small utility module that you can use for tweaks

/modules/gmTweaks/

and add in a smarty_function_gmTweaks_comment($params, $smarty) and do the same thing in there in stead.

That way the template would just look like
{gmTweaks_comment category="featured,latest"}

Bit cleaner, but does the same thing.
gary.moncrieff
gary.moncrieff
@garymoncrieff
10 years ago
865 posts
Thanks Michael only tried the template code so far but that works like a charm.

On the module point, since I will be searching multiple modules ID's would it be better just to stick with template code?

ie Events section will search jrEvent, polls, videos etc
michael
@michael
10 years ago
7,800 posts
Advantages in building a module:
* faster
* more flexible
* cleaner (not mixing display logic with data logic)

Advantages in using template code:
* quicker to setup

Tags