Forum Activity for @douglas

douglas
@douglas
09/03/15 10:41:53AM
2,812 posts

jrSearch page jumper breaks


Using Jamroom

This is fixed and is in the Marketplace. Thanks!
douglas
@douglas
09/02/15 07:19:39AM
2,812 posts

audio albums on mobile


Using Jamroom

Glad you got it sorted! :)
douglas
@douglas
09/02/15 04:46:22AM
2,812 posts

audio albums on mobile


Using Jamroom

This is what I get when I visit that link on my phone.
mobile_album_link.jpg mobile_album_link.jpg - 194KB
douglas
@douglas
09/01/15 04:35:23AM
2,812 posts

audio albums on mobile


Using Jamroom

That link works fine for me on my S5 Android. What mobile device are you seeing this issue with and what browser are you using?
douglas
@douglas
08/31/15 10:20:56AM
2,812 posts

Image Galleries - Not Found


Using Jamroom

Do you have a link that we can check out?
douglas
@douglas
08/31/15 09:12:13AM
2,812 posts

audio albums on mobile


Using Jamroom

What skin are you using?
douglas
@douglas
08/31/15 04:22:29AM
2,812 posts

Question regarding media permissions


Using Jamroom

I'm glad it is working for you now. :)
douglas
@douglas
08/30/15 01:46:57AM
2,812 posts

Question regarding media permissions


Using Jamroom

In your ACP > Forms > Editor Embedded Media > Global Config tab, make sure you don't have the "Profile Media Only" check box checked.
douglas
@douglas
08/25/15 10:28:18AM
2,812 posts

profile latest videos and music bugish thing


Ning To Jamroom

soaringeagle:
i have yes but only a minor change 1 sec
profile index only had a class added
 <div class="block_content profilebio">
profile index music as well
 <div class="col9 last profilemusic">

changed the profile index vid code going to edit music templste too

The jrNingja skin has this in the profile_index.tpl for the music and video blocks:

        {* Latest Music and Latest Videos Row *}
        {if $profile_jrAudio_item_count > 0 || $profile_jrVideo_item_count > 0}
        <div class="row">

            <div class="{if $profile_jrVideo_item_count > 0}col6{else}col12 last{/if}">
                <div class="block">
                    {jrCore_include template="profile_index_music.tpl"}
                </div>
            </div>


            <div class="{if $profile_jrAudio_item_count > 0}col6{else}col12 last{/if}">
                <div class="block">
                    {jrCore_include template="profile_index_video.tpl"}
                </div>
            </div>

        </div>
        {/if}

and I really meant $_profile_id, just forgot to add the underscore.

I'll get the template updated for the next release.

Thanks!
douglas
@douglas
08/25/15 08:31:59AM
2,812 posts

profile latest videos and music bugish thing


Ning To Jamroom

Have you made any modifications to your skins/YOURSKIN/profile_index.tpl?

I also think the profile_index_video.tpl needs a profile_id parameter in the jrCore_list and jrSeemless functions.

Change this:
        {if jrCore_module_is_active('jrCombinedVideo')}
            {jrCombinedVideo_get_active_modules assign="mods"}
            {if strlen($mods) > 0}
                {jrSeamless_list modules=$mods order_by="_created desc" limit=10 template=$v_tpl}
            {/if}
        {else}
            {jrCore_list module="jrVideo" order_by="_created desc" limit=10 template=$v_tpl}
        {/if}

To this:
        {if jrCore_module_is_active('jrCombinedVideo')}
            {jrCombinedVideo_get_active_modules assign="mods"}
            {if strlen($mods) > 0}
                {jrSeamless_list modules=$mods order_by="_created desc" profile_id=$profile_id limit=10 template=$v_tpl}
            {/if}
        {else}
            {jrCore_list module="jrVideo" order_by="_created desc" profile_id=$profile_id limit=10 template=$v_tpl}
        {/if}
  138