Forum Activity for @michael

michael
@michael
09/28/16 06:12:28PM
7,832 posts

JamRoom 6 Latest Activity 'Array' errors?


Using Jamroom

Holly Dilatush:
But when you click on the link in the activity this is what happens (page doesn't exist)

Can't see the URL you're on there, so can't say what might be happening.
michael
@michael
09/28/16 06:11:18PM
7,832 posts

JamRoom 6 Latest Activity 'Array' errors?


Using Jamroom

Holly Dilatush:....Question from Joanna = is there a link to where we can see whatever we put "in the trash can"?.....
ACP -> DASHBOARD -> RECYCLE BIN
michael
@michael
09/28/16 05:59:09PM
7,832 posts

comments order newest first?


Ning To Jamroom

joanna:@Michael - yes, we are using "comment threading."
Turn that off and add comment_order_by="numerical_desc" to the jrCore_item_detail_features function in profile_index.tpl and it should work.

In this section {* Profile Comments section *} down near the bottom of that template is this:
{jrCore_item_detail_features module="jrProfile" item=$item}
change to
{jrCore_item_detail_features module="jrProfile" item=$item comment_order_by="numerical_desc"}
for newest comments first.

Will only work if comment threading is turned off though.
updated by @michael: 09/28/16 05:59:54PM
michael
@michael
09/28/16 05:04:09AM
7,832 posts

private blog issue?


Ning To Jamroom

you could map the 'publishWhen' to the publish date and give it a date of 2036 that should have the same effect. (think its 2036 when timestamp stops working.)
michael
@michael
09/28/16 01:53:56AM
7,832 posts

Some basic SSL questions with Jamroom hosting


Jamroom Hosting

SSL certs are free on Jamroom Hosting.

Would recommend you get a domain name though, so instead of using
mysite.jamroomhosting.com you use:
mysite.com

Here are the docs, start with the "Getting Started" section

Docs: Table of Contents
https://www.jamroom.net/the-jamroom-network/documentation/contents
michael
@michael
09/28/16 12:44:03AM
7,832 posts

Importing Ning 2.0 to Jamroom


Ning To Jamroom

I believe that you can ask ning to lift the limit so you can get all your pictures. Paul is the import specialist, he'll be along sometime soon.
michael
@michael
09/27/16 09:47:04PM
7,832 posts

comments order newest first?


Ning To Jamroom

Do you use "comment threading"?
ACP -> MODULES -> ITEM FEATURES -> COMMENTS -> GLOBAL CONFIG -> LIST OPTIONS -> Enable Threading

??
michael
@michael
09/27/16 09:16:23PM
7,832 posts

getting an error with Mastro 4 skin with Annika live wall Audio buttons


Design and Skin Customization

The issue is in /feedback.tpl it is currently this:
    {if jrCore_module_is_active('jrShareThis')}
        <div class="like_button_box">
            {if jrUser_is_logged_in()}
                <a href="#" class="share">
            {else}
                <a href="{$jamroom_url}/{$uurl}/login">
            {/if}
                    {jrCore_image image="share.png" width="24" height="24" class="like_button_img" alt='Share' title='Share'}</a>
            <span><a href="#">{$item.action_shared_by_count}</a> </span>
            {$id = $item._item_id}
            {if isset($item.action_original_item_id) && is_numeric($item.action_original_item_id)}
                {$id = $item.action_original_item_id}
            {/if}
            <input type="hidden" id="share_id" value="{$id}" />
        </div>
    {/if}
It needs changing to this:
    {if jrCore_module_is_active('jrShareThis')}
        <div class="like_button_box">
            {$id = $item._item_id}
            {if isset($item.action_original_item_id) && is_numeric($item.action_original_item_id)}
                {$id = $item.action_original_item_id}
            {/if}
            {if jrUser_is_logged_in()}
                <a href="#" class="share" onclick="confirmActionShare({$id})">
            {else}
                <a href="{$jamroom_url}/{$uurl}/login">
            {/if}
                    {jrCore_image image="share.png" width="24" height="24" class="like_button_img" alt='Share' title='Share'}</a>
            <span><a href="#">{$item.action_shared_by_count}</a> </span>
        </div>
    {/if}
Then the skin needs to be released. We'll get this sorted, sorry for the delay.
michael
@michael
09/27/16 07:07:06PM
7,832 posts

comments order newest first?


Ning To Jamroom

I looked into this yesterday because it should have been easy, but ran into some issues. So its on my todo list for today.

Should be as easy as adding 'comment_order_by' to the request in the profile_index.tpl function call but its not working for some reason. Will update when I know why.
  339