Recovering a small skin customization I lost when I moved to jr6
Using Jamroom
yeah, thats it.
You're checking if the timeline entry is a comment on the profile and if it is skip it.
{if !(isset($item['action_item']['comment_module']) && $item['action_item']['comment_module'] == 'jrProfile')}
...
So to get it back how it was, and only skip showing those messages on the front timeline, re-make the index_activity.tpl by copying the /modules/jrAction/templates/item_list.tpl to /skins/YOUR-SKIN/index_action.tpl
Then add that template into the jrCore_list with a template="index_action.tpl"
At this point you have EXACTLY the same as the default. Once thats working, then we start changing it.
The reason we do it like this instead of a direct override via the TEMPLATES tab in the ACP is that we still want to show those profile timeline comments on the profiles of the users who wrote them. (if you dont want them there too, then this could be done via an ACP edit.)
Let me know when thats done or if its too difficult and we'll rethink.