Forum Activity for @paul

paul
@paul
06/16/16 10:20:31PM
4,335 posts

{if} statement - works in some templates not in others


Jamroom Developers

Quote: and it is listed in the $items array but my {if} statement doesn't work. (grrrrrrr)
So shouldn't it be $item.group_intro_video or something like that?
paul
@paul
06/16/16 07:21:55AM
4,335 posts

Extra menu level site builder?


Using Jamroom

That would mean modifications to the Site Builder module and I'm not sure how possible it would be. You could make this into a suggestion but as no one else has asked for it, it wouldn't be a priority. Sorry.
paul
@paul
06/16/16 06:25:43AM
4,335 posts

Extra menu level site builder?


Using Jamroom

I'm not seeing that. Take a look at http://pauljamroom5com.jamroomhosting.com/ then hover over th 'Top Item' menu link, then over the 'Level 1b' item.
Or is it that you want another menu level?
paul
@paul
06/16/16 05:02:26AM
4,335 posts

Extra menu level site builder?


Using Jamroom

This is already supported. Just open the SiteBuilder menu tool, create all menu items then 'drag and drop' then into position. Dropping one onto another with make it a sub-menu of that item. You can create menus three levels deep (including the top one) by this method.
Hope that helps
paul
@paul
06/16/16 03:55:17AM
4,335 posts

How to add the who is online for the entire site?


Using Jamroom

I'd just use the jrUser_whos_online smarty call as in -

{jrUser_whos_online template="whos_online.tpl"}

but check that the whos_online.tpl is present in your active skin. If it isn't create the code in your template prior to the smarty call -

{capture name="online_tpl" assign="online_tpl"}
{literal}
<div class="container">{if isset($master)}
    <div class="row">
        <div class="col12 last">
            <span class="media_title">Master Admins</span>
            <hr>
        </div>
    </div>
    <div class="row">
        {foreach from=$master item="m_admin"}
            <div class="col3{if $m_admin@last} last{/if}">
                <div class="center capital p5">
                    {jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$m_admin.session_user_id size="xsmall" crop="auto" class="iloutline" alt=$m_admin.session_user_name title=$m_admin.session_user_name}
                </div>
            </div>
        {/foreach}
    </div>
{/if}
{if isset($admin)}
    <div class="row">
        <div class="col12 last">
            <hr>
            <span class="media_title">Site Admins</span>
            <hr>
        </div>
    </div>
    <div class="row">
        {foreach from=$admin item="s_admin"}
            <div class="col3{if $s_admin@last} last{/if}">
                <div class="center capital p5">
                    {jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$s_admin.session_user_id size="xsmall" crop="auto" class="iloutline" alt=$s_admin.session_user_name title=$s_admin.session_user_name}
                </div>
            </div>
        {/foreach}
    </div>
{/if}
{if isset($user)}
    <div class="row">
        <div class="col12 last">
            <hr>
            <span class="media_title">Members</span>
            <hr>
        </div>
    </div>
    <div class="row">
        {foreach from=$user item="member"}
            <div class="col3{if $member@last} last{/if}">
                <div class="center capital p5">
                    {jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$member.session_user_id size="xsmall" crop="auto" class="iloutline" alt=$member.session_user_name title=$member.session_user_name}
                </div>
            </div>
        {/foreach}
    </div>
{/if}
</div>
<hr>
<div class="p3" style="width:90%;display:table;margin:0 auto;">
    <div style="display:table-row">
        <div class="capital bold" style="display:table-cell">
            Master Admins:
        </div>
        <div class="hilite_2" style="width:1%;display:table-cell;;text-align:right;">
            {$master_count}
        </div>
    </div>
    <div style="display:table-row">
        <div class="capital bold" style="display:table-cell;">
            Site Admins:
        </div>
        <div class="hilite_2" style="width:1%;display:table-cell;;text-align:right;">
            {$admin_count}
        </div>
    </div>
    <div style="display:table-row">
        <div class="capital bold" style="display:table-cell;">
            Members:
        </div>
        <div class="hilite_2" style="width:1%;display:table-cell;;text-align:right;">
            {$user_count}
        </div>
    </div>
    <div style="display:table-row">
        <div class="capital bold" style="display:table-cell;">
            Visitors:
        </div>
        <div style="width:1%;display:table-cell;;text-align:right;">
            <span class="hilite_2">{$visitor_count}</span>
        </div>
    </div>
</div>
<hr>
<div class="p3" style="width:90%;display:table;margin:0 auto;">
    <div style="display:table-row">
        <div class="capital bold" style="display:table-cell;">
            Total:
        </div>
        <div class="hilite_2" style="width:1%;display:table-cell;text-align:right;">
            {$all_count}
        </div>
    </div>
</div>
{/literal}
{/capture}

{jrUser_whos_online template=$online_tpl}
hth
paul
@paul
06/15/16 01:23:41PM
4,335 posts

Changes through the Template editor not showing on the site


Using Jamroom

Only the native skins would get updated, so your clone skin(s) are safe. That is the idea behind cloning them.
When using the template editor, changes are saved on the database and not in the template file. That is why you then have to enable the edited file. Disable it to revert to the original file. This also means that you can compare the original and edited versions using the tool alongside each template. Again, using this method, updates to the original templates will not affect your changes.
Note that if you clone a skin with templates edited via the ACP, those changes will go into the cloned skin so that you could 'stage' your skin development doing this, and revert to a previously cloned skin if things go wrong.
Yes, the ACP editor is a bit clunky compared to other more featured ones, but you have the choice of what to use.
hth
paul
@paul
06/15/16 10:57:29AM
4,335 posts

YouTube module not fetching images


Using Jamroom

Hi - Have checked this out and the issue is with the YouTube key you have entered in the module's global configuration. I temporarily changed it for one of mine and it all worked ok - http://group.co.ke/youtube
Check your key value and re-enter it if its wrong.

Also, I noticed that whilst your adminprofile name is 'Group Hub', you had the url set to 'group' (I presume he did this before installing the Group module, otherwise it wouldn't have been allowed). This was causing issues linking to your profile pages so have set the url to 'group-hub'.

Hope that helps
paul
@paul
06/14/16 07:19:18AM
4,335 posts

Jamroom Facebook/Twitter Campaign


Announcements

Letting our users here know that within the next few days we'll be launching campaigns on both Facebook and Twitter to promote Jamroom, to get people talking about and sharing it. We have often thought about this and now that Nate is on the team we have the resources to start it and follow it through.
Nate has created a series of short Jamroom promotional videos that are going to be integral to the campaign. Take a preview of the first one -
I am Jamroom

If you are either Facebook or Twitter user you can help us to get Jamroom the recognition we all know it deserves. Please visit our Facebook and/or Twitter pages and like/follow them. Then, once the campaign begins, any 'shares' of the posts we'll be making daily will be very much appreciated.

https://www.facebook.com/Jamroomdotnet/

https://twitter.com/Jamroom

Many Thanks
updated by @paul: 11/21/16 07:29:43AM
paul
@paul
06/14/16 06:31:00AM
4,335 posts

YouTube module not fetching images


Using Jamroom

It is on the individual YouTube detail pages.
Check that your template code in the list page matches that of the detail page.
Hope that helps
paul
@paul
06/14/16 02:04:28AM
4,335 posts

Test Site


Using Jamroom

msultani:
Thank you Michael and Jimmy. Still trying to wrap my fingers around this and trying to keep things simple. Is there a way to give someone admin privileges without sharing my master admin info.
Thanks

You can give any user 'master' admin status. You can also make them 'profile' admins.

https://www.jamroom.net/the-jamroom-network/documentation/using-jamroom/2982/user

Goto the selected user account page to make these changes to their status.
hth
  210