Forum Activity for @douglas

douglas
@douglas
05/09/16 05:08:31AM
2,807 posts

Radio


Installation and Configuration

Go to your ACP drop down menu and click on the Skin Settings > Skin Language link. The word "House", "Radio" and "Channel" are numbers 42,43 and 44, change them to what you want and click the "Save Changes" button.

The player for the "House Radio" is in a popup window, therefore can not be played automatically once a user visits the site. Something custom would have to be done in order to make that happen. The player does start playing once the popup opens tough.

Hope this helps!
douglas
@douglas
05/09/16 04:59:45AM
2,807 posts

Menu


Installation and Configuration

I've added the menu entries from ProJam Light to your Site Builder menu for you.

You can add/remove/edit/modify them by clicking the "Menu Editor" button while logged in as the admin and on your home page.

Hope this helps!
douglas
@douglas
05/09/16 04:34:23AM
2,807 posts

How to upload and search audio and video by date and location?


Using Jamroom

The form designer will do what you want.

Just add a date field, not a datetime field unless you need the time too, via the form designer and you should be able to search by date. You can do the same for the Location.

You may also need to rebuild the search index after creating new fields... ACP > Listing > Search > Tools > Rebuild Index.

If you need to show those fields on the profiles detail page, you'll have to modify the item_detail.tpl, ACP > Profiles > Audio > Templates, and add the variables for the new form fields where you would like them to show.

The variables will be the name of the field, ie. if you name the new field audio_publish_date, the variable used in the item_detail.tpl file will be {$item.audio_publish_date}.

Hope this helps!
douglas
@douglas
05/08/16 09:27:01AM
2,807 posts

Audio Thumbnails


Installation and Configuration

nduguseliphaz:
Thank you very Much. Learning alot!!

Your welcome! :)
douglas
@douglas
05/07/16 06:53:21AM
2,807 posts

Audio Thumbnails


Installation and Configuration

nduguseliphaz:
How do i solve it?

I've fixed this for you. The issue was the the item_id parameter for your jrCore_module_function image display function was set to $item._profile_id when it needed to be $item._item_id, _profile_id is only used when showing profiles, media items should use _item_id.

Hope this helps!
douglas
@douglas
05/03/16 10:13:01AM
2,807 posts

Pro Jam Light


Design and Skin Customization

I've fixed it for you, you weren't using the correct code for the SoundCloud image.

Hope this helps!
douglas
@douglas
05/03/16 09:56:50AM
2,807 posts

Pro Jam Light


Design and Skin Customization

nduguseliphaz:
I have already changed that but the songs have no Thumbnails

We'll need a link to see what you have so far.

We may also need admin login to check out the code. Send it to support[at] jamroom[dot] net and we can take a look at it.

Thanks!
douglas
@douglas
05/03/16 09:17:43AM
2,807 posts

Pro Jam Light


Design and Skin Customization

That title can be found in your skins/jrProJamLight/index.tpl

{* NEWEST VIDEOS *}
    <div class="col12 last">
        <h3>{jrCore_lang skin=$_conf.jrCore_active_skin id="11" default="Newest"} {jrCore_lang skin=$_conf.jrCore_active_skin id="14" default="Videos"}</h3><br>

The file that controls that section is your skins/jrProJamLight/index_new_videos.tpl

To change it to a SoundCloud list, change the code in that file to this:

{capture name="row_template" assign="new_soundcloud_template"}
{literal}
    {jrCore_module_url module="jrSoundCloud" assign="murl"}
    {if isset($_items)}
    <div class="container">
        {foreach $_items as $item}
        {if $item@first || ($item@iteration % 3) == 1}
        <div class="row">
            {/if}
            <div class="col4{if $item@last || ($item@iteration % 3) == 0} last{/if}">
                <div class="center">
                    <a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.soundcloud_title_url}"><img src="{$item.soundcloud_artwork_url}" alt="{$item.soundcloud_title_url|jrCore_entity_string}" class="iloutline img_shadow" width=""175" height="175"></a><br>
                    <h4><a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.soundcloud_title_url}">{$item.soundcloud_title|truncate:20:"...":false}</a></h4>
                </div>
            </div>
            {if $item@last || ($item@iteration % 3) == 0}
        </div>
        {/if}
        {/foreach}
    </div>
    {if $info.total_pages > 1}
    <div style="float:left; padding-top:12px;">
        {if $info.prev_page > 0}
        <span class="button-arrow-previous" onclick="jrLoad('#newest_videos','{$info.page_base_url}/p={$info.prev_page}');$('html, body').animate({ scrollTop: $('#nvideos').offset().top -100 }, 'slow');">&nbsp;</span>
        {else}
        <span class="button-arrow-previous-off">&nbsp;</span>
        {/if}
        {if $info.next_page > 1}
        <span class="button-arrow-next" onclick="jrLoad('#newest_videos','{$info.page_base_url}/p={$info.next_page}');$('html, body').animate({ scrollTop: $('#nvideos').offset().top -100 }, 'slow');">&nbsp;</span>
        {else}
        <span class="button-arrow-next-off">&nbsp;</span>
        {/if}
    </div>
    {/if}
    <div style="float:right; padding-top:9px;">
        <a href="{$jamroom_url}/{$murl}" title="More SoundCloud Songs"><div class="button-more">&nbsp;</div></a>
    </div>

    <div class="clear"> </div>
    {/if}
{/literal}
{/capture}



{jrCore_list module="jrSoundCloud" order_by="_item desc" template=$new_soundcloud_template pagebreak="3" page=$_post.p}
douglas
@douglas
05/03/16 05:17:57AM
2,807 posts

skin from scratch


Design and Skin Customization

I've not see the videos so can't say if they still apply... I'd say the only difference now would be if you want your skin to work with the Site Builder module.

JR5 skins are also responsive skins unlike JR4 skins/themes, but that may be covered in the videos.
douglas
@douglas
05/03/16 05:05:57AM
2,807 posts

Pro Jam Light


Design and Skin Customization

You can find this in your modules/jrSoundCloud/templates/item_list.tpl

Thumbnail/Item Image
                        {if isset($item.soundcloud_artwork_url) && strlen($item.soundcloud_artwork_url) > 0}
                            <a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.soundcloud_title_url}"><img src="{$item.soundcloud_artwork_url}" alt="{$item.soundcloud_title_url|jrCore_entity_string}" class="iloutline img_scale"></a><br>
                        {/if}

TItle
<h3><a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.soundcloud_title_url}">{$item.soundcloud_title}</a></h3>

Hope this helps!
  105