My Index page activity feed had two things customized so they would NOT show up in the activity timline: 1) when a member 'follows' another member (which still seems to be working just fine!) and 2) when a member leaves a Comment on another member's Profile page comment wall...like the terribly repetitive "Hi, welcome to the site!" type comments that get so tiresome to see all day long on the site's main page. This customization stopped working when I moved to 6, and I'd like to recover the bit of code that keeps those 'welcome comments' from appearing in the Index page timeline.
Here is my active skin's CURRENT (jr6) index.tpl section code for my activity section:
{* BEGIN Activity Section *}
<div class="col8">
<div class="title m10">
<h2>{jrCore_lang skin=$_conf.jrCore_active_skin id="20" default="Latest"} {jrCore_lang skin=$_conf.jrCore_active_skin id="27" default="Activity"}</h2>
</div>
{* BEGIN Activity Section *}
<a id="activdiv" name="activdiv"></a>
<div id="activitydiv" style="margin: 10px 10px 0 10px;padding-bottom: 10px;">
<div class="item"{if !jrCore_is_mobile_device()} style="max-height:916px;overflow-y:auto;overflow-x:hidden"{/if}>
{jrCore_list module="jrAction" search1="action_module != jrFollower" order_by="_item_id desc" pagebreak=50 page=$_post.p}
<br>
<div style="width:100%;text-align:center;padding:10px">
<a href="{$jamroom_url}/timeline">View More</a>
</div>
</div>
</div>
</div>
{* END Activity Section *}
and here is my older (November) jr5 comparison of the same template and section, which I assume has the code line that will keep those profile page comments OFF the timeline on Index page:
{* BEGIN Activity Section *}
<div class="col8">
<div class="title m10">
<h2>{jrCore_lang skin=$_conf.jrCore_active_skin id="20" default="Latest"} {jrCore_lang skin=$_conf.jrCore_active_skin id="27" default="Activity"}</h2>
</div>
{***jrCore_list module="jrAction" search1="action_module != jrFollower" search2="action_data NOT_LIKE %\"comment_module\":\"jrProfile\"%" order_by="_item_id numerical_desc" template="index_activity.tpl" pagebreak=50 page=$_post.p***}
{jrCore_list module="jrAction" search1="action_module != jrFollower" order_by="_item_id numerical_desc" template="index_activity.tpl" pagebreak=60 page=$_post.p}
</div>
{* END Activity Section *}
Can anyone tell me if I've focused on the right area and have the right idea here- and if so, what line of code to take from the old version and WHERE exactly it should be placed in the new version?
Thanks for any help! I have to be a bit careful here, because this is my main live site, and I'm not that good at this stuff.

--
...just another satisfied Jamroom customer.
Migrated from Ning to Jamroom June 2015
updated by @strumelia: 05/05/17 07:41:09AM