Issues on member Profile Pages
Ning To Jamroom
Quote: I wanted to change the order that Groups were displayed when someone clicked on Groups in the top Nav
There is no jrGroup_index.tpl override file in the Ningja skin so this is handled by the default index.tpl file in the jrGroup module. Change the order_by parameter in the jrCore_list call.
Quote: In the top screenshot, you'll see that the Latest Discussion is from 11 months ago (_created) and has zero comments. I'd like it to be the most recently updated (_updated) and be preceded by the string "updated ". I feel confident I can do this using what I learned reading the jrCore_List documentation and the notes on how to trunc the length of a title in an image gallery. But where is the template? (ON A RELATED NOTE: I want to get rid of the latest music panel.)
You can change the profile discussion order_by in the Ningja profile_index_discussion.tpl template.
The music panel is in Ningja profile_index.tpl - delete or comment out this bit -
<div class="{if $profile_jrVideo_item_count > 0}col6{else}col12 last{/if}">
<div class="block">
{jrCore_include template="profile_index_music.tpl"}
</div>
</div>Hint - Wrap code in {* *} to comment out - {* "This will not show!!" *}
Quote: In the bottom screenshot you will notice that the list of Groups is displayed. I got here not by clicking Groups from the list of modules, but by clicking "All" next to "Latest Discussions" the URL displayed on the mouseover is, in fact. groups.
My expectation for what **should happen** is that it would show discussions I have created or contributed to, and the display would be ordered to show the most recent at the top.
I think the logic there is that all profile discussions are part of a group, so that is why it goes to the group page, but I see where you're coming from. I'll raise that with Douglas and see what we think.
Thanks