Forum Activity for @paul

paul
@paul
12/01/14 03:08:22AM
4,335 posts

Question as to order of Groups on group page


Ning To Jamroom

Hi Strumelia
For 'Most Active' I assume that would be by number of comments, so -
order_by="group_comment_count numerical_desc"

Members are saved as a json array and there is currently no group_member_count option. I'll add it in for the next release. When it is there the option will be -
order_by="group_member_count numerical_desc"

For Most Recent Activity you need to query the Comment datastore -
{jrCore_list module="jrComment" search="comment_module = jrGroup" order_by="_created numerical_desc" . . . }
Note that if doing this, only the groups' title and their urls would be returned so you could display that and link to the actual group ok.

hth
Pa
updated by @paul: 12/29/14 09:23:54AM
paul
@paul
12/01/14 01:30:14AM
4,335 posts

Daily Limits


Installation and Configuration

That isn't supported in the ProfileLimits module because timeline posts go into onto the Action datastore which other modules also write to when items are created and updated, so they would be included as part of the set limit, which isn't desirable.
I can see that you might want to limit just timeline posts to stop users swamping it, so I'll raise a ticket to see if it can be done at some point.
Thanks
paul
@paul
11/30/14 12:29:52PM
4,335 posts

Site Builder for Ningja skin?


Ning To Jamroom

Go to your marketplace tools. In one of them there's an option to turn on beta downloads. I'm away from my PC atm so can't remember exactly which tool.
updated by @paul: 12/29/14 09:23:54AM
paul
@paul
11/30/14 11:58:09AM
4,335 posts

Site Builder for Ningja skin?


Ning To Jamroom

Is your site set up to access the Jamroom marketplace?
If so you can download/install the Site Builder and Slate skin and try it out, but remember that its still in beta.
If you're not set up, let me know and I'll login and do it for you.
updated by @paul: 12/29/14 09:23:54AM
paul
@paul
11/30/14 10:40:21AM
4,335 posts

how to accomplish these


Ning To Jamroom

AS you know, Jamroom is 'profile-centric', so everything needs to belong to a profile, including a forum (this forum belongs to profile 'ning-to-jamroom').
So before import, one could create a profile called 'forum', or 'global', say, then in the import configuration set the forum target profile to that.
updated by @paul: 12/29/14 09:23:54AM
paul
@paul
11/30/14 03:24:28AM
4,335 posts

User Requests


Ning To Jamroom

Thanks Douglas - That's what happens when you blindly copy and paste.
It still worked though ;-)
updated by @paul: 12/29/14 09:23:54AM
paul
@paul
11/30/14 12:08:37AM
4,335 posts

User Requests


Ning To Jamroom

Yeah - It could do with a bit of styling to control it. This works -
<div class="container">
    <div class="row">
        <div class="col12 last">
            <div class="item">
                {if isset($_items)}
                    <div class="row">
                        {foreach from=$_items item="item"}
                            <div class="col2{if $row@last} last{/if}">
                                <div class="center" style="padding:10px;">
                                    {$item.profile_name|truncate:20}<br>
                                    <a href="{$jamroom_url}/{$item.profile_url}">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$item._profile_id size="medium" crop="auto" class="iloutline img-profile" alt=$item.profile_name title=$item.profile_name width=172 height=172}</a>
                                </div>
                            </div>
                        {/foreach}
                    </div>
                {/if}
            </div>
        </div>
    </div>
</div>

updated by @paul: 12/29/14 09:23:54AM
paul
@paul
11/29/14 02:56:17PM
4,335 posts

User Requests


Ning To Jamroom

Replace the entire code in the template with the above. The profile name should show above the image.
Make sure you have the developer module installed and developer mode turned on so that you see changes immediately.
updated by @paul: 12/29/14 09:23:54AM
paul
@paul
11/29/14 02:33:52PM
4,335 posts

User Requests


Ning To Jamroom

Not sure how DW is used with JR development, but as long as the the {debug} ends up in the template and on your server, then yes.
updated by @paul: 12/29/14 09:23:54AM
paul
@paul
11/29/14 02:23:52PM
4,335 posts

User Requests


Ning To Jamroom

And to add profile name, in the jrProfile_item_list.tpl template, try this for starters -
<div class="container">
    <div class="row">
        <div class="col12 last">
            <div class="item">
                {if isset($_items)}
                {foreach from=$_items item="item"}
                    {$item.profile_name}
                    <br>
                    <a href="{$jamroom_url}/{$item.profile_url}">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$item._profile_id size="medium" crop="auto" class="iloutline img-profile" alt=$item.profile_name title=$item.profile_name width=172 height=172}</a>
                {/foreach}
                {/if}
            <div style="clear:both">
            </div>
        </div>
    </div>
</div>

updated by @paul: 12/29/14 09:23:54AM
  361