Forum Activity for @paul

paul
@paul
01/02/15 02:20:25PM
4,335 posts

After deleting a discussion, getting returned to the wrong page


Ning To Jamroom

This will be fixed in the next release.
Thanks
paul
@paul
01/02/15 02:03:22PM
4,335 posts

Events missing from Top Nav - and home page


Ning To Jamroom

Take a look at the two skin 'header_menu_*.tpl' template files for how to build menu items.
To change the menu text strings, use the appropriate module language editors in the ACP
hth
Pa
paul
@paul
01/02/15 01:51:15PM
4,335 posts

Events missing from Top Nav - and home page


Ning To Jamroom

Its not easy including everything on the homepage without it getting cluttered and difficult to use. We've compromised and included what we think are the most frequently used Ning features, and events wasn't one of them.
Your site doesn't have audio items so might I suggest you swap the front page audio menu and panel for events?
paul
@paul
01/02/15 01:34:07PM
4,335 posts

After deleting a discussion, getting returned to the wrong page


Ning To Jamroom

Yep - I'm seeing that as well. Let me check it out.
Thanks
paul
@paul
01/02/15 01:04:14PM
4,335 posts

Issues on member Profile Pages


Ning To Jamroom

Sorry about that - Glad you sorted it.

WRT to the discussion/forum thing, we'll look into it and hopefully get it right once and for all :-)
paul
@paul
01/02/15 12:43:05PM
4,335 posts

Issues on member Profile Pages


Ning To Jamroom

thechocolatelife:
WRT the way the discussions are being listed within the Lastest Discussions panel. I can change the sort as shown here - from " _created " to " _updated ".

{jrCore_list module="jrGroupDiscuss" order_by="_updated desc" profile_id=$_profile_id template=$pd_tpl}

The resultant displayed text is:

@chocliferoot 2 years ago - Comments: 9

What I really want it to say is:

@chocliferoot - Comments: 9; Last updated ## on MMMDDYY; Created 2 years ago

Taking a closer look, it might be in the foreach loop above but, again, I am not familiar enough with the core to know how to get the output I am looking for.

If you look in the profile_index_discussion.tpl file above where that jrCore_list is called, you'll see where the template assigned to $pd_tpl is created. Line 20 is where the above is outputted, so change that line to something like -
<br><small><a href="{$jamroom_url}/{$item.original_profile_url}">@{$item.original_profile_url}</a> - {jrCore_lang skin=$_conf.jrCore_active_skin id="37" default="Comments"}: {$item.discuss_comment_count|default:0}; Last updated on {$item._updated|jrCore_format_time:false:"M d y"}; Created {$item._created|jrCore_format_time:false:"relative"}</small>
paul
@paul
01/02/15 02:05:33AM
4,335 posts

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
  344