Forum Activity for @paul

paul
@paul
09/14/16 01:31:30AM
4,335 posts

Vimeo integrity check deleted all my videos


Using Jamroom

OK - Will check it out later today and let you know.
Thanks
paul
@paul
09/14/16 01:21:26AM
4,335 posts

How do I remove items so they don't show in a profile "latest activity"


Using Jamroom

Bit confused here. In your top post you ask about timeline entries but your screenshot shows Group Discussions. The thread then seems to go OT onto the batch editor.
Where is the timeline that has then entries you want deleting, and as admin, do you not see a delete option when hovering over them?
paul
@paul
09/14/16 01:14:46AM
4,335 posts

Vimeo integrity check deleted all my videos


Using Jamroom

Fortunately the deleted vimeos are still in your Recycle Bin so can be restored from there - ACP=>Dashboard=>Recycle Bin
Let me know if you want me to do that for you.
When restored I'll look at the Vimeo Integrity Check code to see why this is happening and if there is a fix.
Thanks
paul
@paul
09/13/16 10:07:11AM
4,335 posts

How do I remove Follow from my Community profile?


Using Jamroom

Your Community profile doesn't need to be seen by anyone really as its just a 'holding' profile for the site forum, which is linked to directly so I'd suggest removing all profile menu items so as not to give any options should users/visitors find their way there. To do that, goto thye skin profile_header.tpl tempalte and take out the menu bar (lines 27-37) for this profile as follows -

{if $profile_quota_id != 2}
    <div class="row">
        <div class="col12 last">
            <div class="profile_menu">
                {if jrCore_is_mobile_device()}
                    {jrProfile_menu template="profile_menu_mobile.tpl" profile_quota_id=$profile_quota_id profile_url=$profile_url}
                {else}
                    {jrProfile_menu template="profile_menu.tpl" profile_quota_id=$profile_quota_id profile_url=$profile_url}
                {/if}
            </div>
        </div>
    </div>
{/if}
paul
@paul
09/13/16 09:24:36AM
4,335 posts

Color change on Mougle


Design and Skin Customization

Hi - Welcome to the Jamroom forum.
You have a lot of control of colours by going to the skin's settings page and clicking on the Style tab. Here you'll be able to enter different CSS options.
Hope that helps
paul
@paul
09/13/16 08:46:31AM
4,335 posts

Moving Profile comment form ABOVE the comment list


Using Jamroom

Hi Elise
The template you want is the jrComment comment_form.tpl -
{jrCore_module_url module="jrComment" assign="curl"}
<a id="{$jrComment.unique_id}_cm_section"></a>
<a id="comment_section"></a>

<div id="{$jrComment.unique_id}_comments" class="comment_page_section">

    {* see if profile owners can delete *}
    {assign var="profile_owner_id" value=0}
    {if $_user.user_active_profile_id == $_item._profile_id && $_item.quota_jrComment_profile_delete == 'on'}
        {assign var="profile_owner_id" value=$_item._profile_id}
    {/if}

    {if $jrComment.pagebreak > 0}
        {jrCore_list module="jrComment" search1="comment_item_id = `$jrComment.item_id`" search2="comment_module = `$jrComment.module`" order_by="_item_id `$_conf.jrComment_direction`" profile_owner_id=$profile_owner_id pagebreak=$_conf.jrComment_pagebreak page=1 pager=true pager_template="comment_pager.tpl"}
    {else}
        {jrCore_list module="jrComment" search1="comment_item_id = `$jrComment.item_id`" search2="comment_module = `$jrComment.module`" order_by="_item_id `$_conf.jrComment_direction`" limit="500" profile_owner_id=$profile_owner_id}
    {/if}

</div>

{if jrUser_is_logged_in() && $_user.quota_jrComment_allowed == 'on'}

    <div id="comment_form_holder">
    <div id="comment_form_section">

        <div id="{$jrComment.unique_id}_cm_notice" class="item error" style="display:none;">
            {* any comment error loads here *}
        </div>

        {if $_conf.jrComment_threading == 'on' && $_conf.jrComment_editor == 'on'}
        <div id="comment_reply_to" class="item success" style="display:none;">
            {* small note about how you are replying to when editor is enabled *}
            {jrCore_lang module="jrComment" id=18 default="Your Reply To:"} <strong><span id="comment_reply_to_user"></span></strong>
        </div>
        {/if}

        <div class="item" style="display:table">
            <div style="display:table-row">
                <div class="p5" style="display:table-cell;width:5%;vertical-align:top;">
                    {jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$_user._user_id size="small" alt=$item.user_name class="action_item_user_img iloutline" _v=$_user.user_image_time}
                </div>
                <div class="p5" style="display:table-cell;width:95%;padding:5px 12px;">

                    <a id="cform"></a>
                    <form id="{$jrComment.unique_id}_form" action="{$jamroom_url}/{$curl}/comment_save" method="POST" onsubmit="jrPostComment('#{$jrComment.unique_id}', 'undefined', 500, '{$_conf.jrComment_editor}');return false">

                        <input type="hidden" id="{$jrComment.unique_id}_cm_module" name="comment_module" value="{$jrComment.module}">
                        <input type="hidden" id="{$jrComment.unique_id}_cm_profile_id" name="comment_profile_id" value="{$jrComment.profile_id}">
                        <input type="hidden" id="{$jrComment.unique_id}_cm_item_id" name="comment_item_id" value="{$jrComment.item_id}">
                        <input type="hidden" id="{$jrComment.unique_id}_cm_order_by" name="comment_order_by" value="{$_conf.jrComment_direction}">
                        <input type="hidden" id="comment_parent_id" name="comment_parent_id" value="0">

                        {if isset($_conf.jrComment_editor) && $_conf.jrComment_editor == 'on' && !jrCore_is_mobile_device()}
                            {jrCore_editor_field name="comment_text"}
                        {else}
                            <textarea id="comment_text" name="comment_text" cols="40" rows="5" class="form_textarea {$jrComment.class}" style="height:64px;width:98%;{$jrComment.style}"></textarea><br>
                        {/if}
                        <div style="vertical-align:middle">
                            {jrCore_lang module="jrCore" id="73" default="working..." assign="working"}
                            {jrCore_image image="form_spinner.gif" id="`$jrComment.unique_id`_fsi" width="24" height="24" alt=$working style="margin:8px 8px 0px 8px;display:none"}<input id="{$jrComment.unique_id}_cm_submit" type="submit" value="{jrCore_lang module="jrComment" id="2" default="Save Comment"}" class="form_button {$jrComment.class}" style="margin-top:8px;{$jrComment.style}">
                        </div>

                        {if $_user.quota_jrComment_attachments == 'on'}
                        <div class="jrcomment_upload_attachment">
                            {jrCore_upload_button module="jrComment" field="comment_file" allowed="`$_user.quota_jrComment_allowed_file_types`" multiple="true"}
                        </div>
                        {/if}
                        <div style="clear:both"></div>

                    </form>

                </div>
            </div>
        </div>
    </div>
    </div>

{elseif jrUser_is_logged_in() === false}

    {jrCore_module_url module="jrUser" assign="url"}
    <div class="item"><div class="p5"><a href="{$jamroom_url}/{$url}/login">{jrCore_lang module="jrComment" id="16" default="You must be logged in to post a comment"}</a></div></div>

{/if}

If you look at this code you see that its in two sections. Lines 5-19 display all the comments whilst lines 21-83 display the form so I think you should be able to jusr cut lines 5-19 and paste them at the end after the form section.
paul
@paul
09/13/16 08:09:57AM
4,335 posts

Completing Ning Import Process After Some Delay


Ning To Jamroom

Hi Peter
Yes - re-importing to bring your JR site into sync with the latest Ning archive should be straightforward and quick as the importer will detect and skip over existing members and content. Your initial import was on 2nd June this year so maybe there isn't too much new stuff? Send me a ticket with the Ning site and its admin login along with your JR site and admin login, and let me know when you want this doing and I'll hopefullt be able to get it done for you.
Cheers
Pa
paul
@paul
09/13/16 05:59:25AM
4,335 posts

Seeking easiest way to move a single profile to another quota


Installation and Configuration

As master admin, goto the profile page and click on the update (gearwheel) icon. You can switch the profile quota there.
hth
Pa
paul
@paul
09/13/16 02:01:29AM
4,335 posts

How do I remove items so they don't show in a profile "latest activity"


Using Jamroom

Elise - Can you shoot me your admin login in a support ticket so that I can jump in a help where necessary? I guess the original ticket where you gave it to me is buried/closed now so can't find it!!
paul
@paul
09/12/16 03:21:26PM
4,335 posts

New Jamroom Hosting Features Questions


Jamroom Hosting

Patience ;-) We're pretty close !!
  195