Forum Activity for @douglas

douglas
@douglas
10/15/14 07:27:38AM
2,812 posts

Recurring Error


Installation and Configuration

I think it has to do with Flickr's side, not really anything we can do about it. I see it on my test and dev site every now and then, but it doesn't seem to effect the module as it still works.

Hope this helps! :)
douglas
@douglas
10/14/14 07:50:22AM
2,812 posts

Player Streaming Error


Using Jamroom

Go to the Cluster Admin and see if there are any errors being reported, you should see an error log button near the top.
douglas
@douglas
10/10/14 05:13:40AM
2,812 posts

Page display problem


Off Topic

I would make sure that you've upgraded all of your modules. If they are updated then try reloading the module(s) via the Marketplace > Tools > Reload Modules Or Skins, then run the Integrity Check tool via Core > Tools and clear the cache as well.

Hope this helps! :)
douglas
@douglas
10/09/14 04:39:17AM
2,812 posts

Core 5.2.9 TinyMCE4 update


IpsumJam

I've actually got the notification checked for this thread, but I didn't see that you've replied. That could be due to the fact that I get a ton of emails and may have just overlooked it though.

Yes, this is on a PC and on an online server. I'll PM you the login so you can check it out if you want?

Thanks!
douglas
@douglas
10/03/14 07:11:59AM
2,812 posts

How to Create a Genre block


Design and Skin Customization

Try this for the link...

<a href="{$jamroom_url}/music/search_area=audio_genre/search_string={$item.audio_genre">{$item.audio_genre}</a>

Hope this helps! :)
douglas
@douglas
10/02/14 09:08:27AM
2,812 posts

Quota - Terms of Service


Using Jamroom

Are you creating site pages or profile pages? They need to be a site page.

Hope this helps!
douglas
@douglas
09/28/14 07:47:24AM
2,812 posts

How To Play a list of songs the user has LIKEd?


Design and Skin Customization

Try this instead:

{capture name="song_row" assign="song_row"}
        {literal}
            {if isset($_items)}
                {jrCore_media_player type="jrAudio_player_dark" module="jrAudio" field="audio_file" items=$_items autoplay=false}
            {/if}
        {/literal}
    {/capture}
    {jrCore_list module="jrAudio" order_by="audio_like_count numerical_desc" profile_id=$_profile_id template=$song_row}
douglas
@douglas
09/26/14 11:40:43AM
2,812 posts

How To Play a list of songs the user has LIKEd?


Design and Skin Customization

Try changing it to this:

{capture name="song_row" assign="song_row"}
        {literal}
            {if isset($_items)}
                {jrCore_media_player type="jrAudio_player_dark" module="jrAudio" field="audio_file" items=$_items autoplay=false}
            {/if}
        {/literal}
    {/capture}
    {jrCore_list module="jrAudio" order_by="audio_like_count numerical_desc" template=$song_row}
douglas
@douglas
09/26/14 08:04:38AM
2,812 posts

How To Play a list of songs the user has LIKEd?


Design and Skin Customization

I just stuck this in a template and it works for me... not sure if that is what your after, but it might help you figure out what you need to do to get the results your looking for.

    {capture name="song_row" assign="song_row"}
        {literal}
            {if isset($_items)}
                {jrCore_media_player type="jrAudio_player_dark" module="jrAudio" field="audio_file" items=$_items autoplay=false}
            {/if}
        {/literal}
    {/capture}
    {jrCore_list module="jrAudio" order_by="audio_rating_1_5 numerical_desc" template=$song_row}

Hope this helps! :)
  202