Forum Activity for @douglas

douglas
@douglas
11/25/15 04:19:44AM
2,807 posts

Adding TAGS to a template search


Design and Skin Customization

I'm not sure why the search3 isn't working, may be give this a try.

{jrSeamless_list modules="jrVideo,jrYouTube" order_by="_created numerical_desc"  search1="*_category = football" search2="*_tags LIKE %5th% OR *_tags LIKE %6th%" pagebreak=15 page=$_post.p pager=false template=$tpl}
douglas
@douglas
11/24/15 08:28:28AM
2,807 posts

IMAGE CORE "Skin Images" not working


Design and Skin Customization

After updating the module, did you delete the broken image and upload the image again?
douglas
@douglas
11/23/15 03:01:05AM
2,807 posts

Adding TAGS to a template search


Design and Skin Customization

Give this a try:

{jrSeamless_list modules="jrVideo,jrYouTube" order_by="_created numerical_desc"  search1="*_category = football" search2="*_tags LIKE %5th%" search3="*_tags LIKE %6th%" pagebreak=15 page=$_post.p pager=false template=$tpl}
douglas
@douglas
11/23/15 02:53:46AM
2,807 posts

Who Is Online


Design and Skin Customization

The jrForum_active_users funtion is for the Forum only and will not work anywhere else.

However you can use the jrUser_whos_online function to add a "who is online" section to a widget.

Add something like this to a "Template Code" widget
{jrUser_whos_online template="whos_online.tpl" assign="WHOS_ONLINE"}
{if isset($WHOS_ONLINE) && strlen($WHOS_ONLINE) > 0}
    {$WHOS_ONLINE}
{else}
    <br><br><br><br>
    <div style="text-align:center;">
        <input type="button" class="form_button" value="Login" onclick="jrCore_window_location('{$jamroom_url}/{jrCore_module_url module="jrUser"}/login');"><br>
        <br>
    {if $_conf.jrCore_maintenance_mode != 'on' && $_conf.jrUser_signup_on == 'on'}
        <input type="button" class="form_button" onclick="jrCore_window_location('{$jamroom_url}/{jrCore_module_url module="jrUser"}/signup');" value="Create Account"><br>
        <br>
    {/if}
    </div>
{/if}

Then create a whos_online.tpl file with this code in it and upload it to your skins/YOURSKIN directory:

<div class="container">{if isset($master)}
    <div class="row">
        <div class="col12 last">
            <span>{jrCore_lang  skin=$_conf.jrCore_active_skin id="56" default="Master"} {jrCore_lang  skin=$_conf.jrCore_active_skin id="57" default="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">
                    <a href="{$jamroom_url}/{$m_admin.profile_url}">{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}</a>
                </div>
            </div>
        {/foreach}
    </div>
{/if}
{if isset($admin)}
    <div class="row">
        <div class="col12 last">
            <hr>
            <span>{jrCore_lang  skin=$_conf.jrCore_active_skin id="8" default="Site"} {jrCore_lang  skin=$_conf.jrCore_active_skin id="57" default="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">
                    <a href="{$jamroom_url}/{$s_admin.profile_url}">{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}</a>
                </div>
            </div>
        {/foreach}
    </div>
{/if}
{if isset($user)}
    <div class="row">
        <div class="col12 last">
            <hr>
            <span>{jrCore_lang  skin=$_conf.jrCore_active_skin id="58" default="Members"}</span>
            <hr>
        </div>
    </div>
    <div class="row">
        {foreach from=$user item="member"}
            <div class="col3{if $member@last} last{/if}">
                <div class="center">
                    <a href="{$jamroom_url}/{$member.profile_url}">{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}</a>
                </div>
            </div>
        {/foreach}
    </div>
{/if}
</div>

<hr>

<div class="p5" style="width:90%;display:table;margin:0 auto;">
    <div style="display:table-row;">
        <div style="display:table-cell;">
            {jrCore_lang  skin=$_conf.jrCore_active_skin id="56" default="Master"} {jrCore_lang  skin=$_conf.jrCore_active_skin id="57" default="Admins"}:
        </div>
        <div style="width:5%;display:table-cell;text-align:right;">
            {$master_count}
        </div>
    </div>
    <div style="display:table-row;">
        <div style="display:table-cell;">
            {jrCore_lang  skin=$_conf.jrCore_active_skin id="8" default="Site"} {jrCore_lang  skin=$_conf.jrCore_active_skin id="57" default="Admins"}:
        </div>
        <div style="width:5%;display:table-cell;text-align:right;">
            {$admin_count}
        </div>
    </div>
    <div style="display:table-row;">
        <div style="display:table-cell;">
            {jrCore_lang  skin=$_conf.jrCore_active_skin id="58" default="Members"}:
        </div>
        <div style="width:5%;display:table-cell;text-align:right;">
            {$user_count}
        </div>
    </div>
    <div style="display:table-row;">
        <div style="display:table-cell;">
            {jrCore_lang  skin=$_conf.jrCore_active_skin id="59" default="Visitors"}:
        </div>
        <div style="width:5%;display:table-cell;text-align:right;">
            {$visitor_count}
        </div>
    </div>

</div>

<hr>

<div class="p5" style="width:90%;display:table;margin:0 auto;">

    <div style="display:table-row">

        <div style="display:table-cell;">
        {jrCore_lang  skin=$_conf.jrCore_active_skin id="60" default="Total"}:
        </div>
        <div style="width:5%;display:table-cell;text-align:right;">
        {$all_count}
        </div>

    </div>

</div>
douglas
@douglas
11/20/15 09:45:56AM
2,807 posts

embed issues


Using Jamroom

There hasn't been any updates to the Nova skin since 5.3beta has been out, yet.
douglas
@douglas
11/20/15 05:36:30AM
2,807 posts

embed issues


Using Jamroom

izhmel:
I am using the Nove skin and don't see -> PLAYER TYPE

I don't believe that has been released yet but will be soon.

However... since your using a clone of the Nova skin you will not see that setting in your skin config unless you update your cloned skin confg.php file.

Regardless of the skin config settings, you should not be seeing that message if your running the latest version of the audio module.

If you can send us your admin login, we can check it out for you.

Thanks!
douglas
@douglas
11/19/15 06:20:27AM
2,807 posts

Background Image?


Using Jamroom

You can do this one of two ways:

1. You can upload the background image to your skins/YOURSKIN/img directory and then in your skins/YOURSKIN/css/site.css file, change the image name in the #wrapper selector.

Quote:
#wrapper {
margin:0 auto;
background-color: #C7C7C7;
background-image: url('{$jrNingja_img_url}/wrapper_bckgrnd.png');
background-attachment: fixed;
background-position: left top;
background-size: initial;
background-repeat: repeat-x;
}

Note that if you've cloned the jrNingja skin, then the$ jrNingja_img_url variable will not be jrNingja, but YOURSKIN_NAME instead.

OR

2. Go to your ACP > Skin Settings > Skin Images and upload a new image for the wrapper_bckgrnd.png image. After uploading be sure to check the check box to select that images as the wrapper background image then reset your system cache and image cache. You may also need to clear your browser cache.

Hope this helps!
douglas
@douglas
11/17/15 09:27:41AM
2,807 posts

Question About jrPhotoPro skin


Design and Skin Customization

What jrCore_list function are you using and where are you putting it?
douglas
@douglas
11/17/15 09:25:46AM
2,807 posts

embed issues


Using Jamroom

Without admin access and FTP access, there isn't much we can do. Send it to support[at]jamroom[dot]net and I'll take a look at it for you.
  126