Forum Activity for @paul

paul
@paul
02/25/14 02:09:46AM
4,335 posts

jrComment module bug after renaming a Module URL


Using Jamroom

Are you clearing caches after the rename?
paul
@paul
02/24/14 11:20:26AM
4,335 posts

Form Designer -- customizing layout


Using Jamroom

You can move the fields up and down in form form designer.
Also, all the templates for the form elements are in the /modules/jrCore/templates folder, so you could override them with templates in your skin folder.
hth
Pa
paul
@paul
02/24/14 07:22:10AM
4,335 posts

Music Site - functionality


Design and Skin Customization

andrusito:
@paul thanks for your responses.

1. I don't want profile owners be able to change the first page of their profiles.. I must have the control of this setting. In JR4 I could set this.

2. I know about playlist :) but I'm talking about a music player that lists all songs from an artist when you visit his/her profile. On the actual MUSIC section you have to click the play button each time you want to listen a song.

Thanks for your time and support !

1. In that case you'd likely be best just to modify the skin profile template(s) to show the audio page as default.

2. Include the following where you want the player to show -

{jrCore_media_player type="jrAudio_player_dark" module="jrAudio" field="audio_file" profile_id=$_profile_id order_by="audio_title random" limit=100 autoplay=true}

Cheers
Pa
paul
@paul
02/24/14 04:07:18AM
4,335 posts

play list not found


Installation and Configuration

The Scientist does not have any playlists.
If he did have one on that link, it has been deleted.
If this is not the issue, please save time and give us more information so that we can help.
paul
@paul
02/23/14 12:40:10PM
4,335 posts

jrPlaylist - Radio station


Installation and Configuration

I had to look to see how I did it ;-)
Its pretty simple, here's the template for the radio popup -
{jrCore_include template="meta.tpl"}
<body>

<div style="background-color:#c8d088;">
{jrCore_image image="logo.png" class="img_scale" alt=$_conf.jrCore_system_name title=$_conf.jrCore_system_name style="max-width:425px;max-height:80px;"}
    <h1 style="color:#222;">
    {if isset($id) && $id == 'all'}
        All Tracks Radio
    {elseif isset($album)}
        {$album|urldecode}
    {elseif isset($id) && $id == 'latest'}
        New Tracks Radio
    {else}
        {$genre|ucwords} Radio
    {/if}
    </h1>
</div>

<div class="container">
    <div class="row">
        <div class="col12 last">
            {if isset($id) && $id == all}
                {jrCore_media_player type="jrAudio_player_dark" module="jrAudio" field="audio_file" order_by="audio_title random" limit=100 autoplay=true}
            {elseif isset($id) && $id == latest}
                {jrCore_media_player type="jrAudio_player_dark" module="jrAudio" field="audio_file" order_by="_item_id desc" limit=100 autoplay=true}
            {elseif isset($genre)}
                {jrCore_media_player type="jrAudio_player_dark" module="jrAudio" field="audio_file" search="audio_genre = `$genre`" order_by="_item_id desc" limit=100 autoplay=true}
            {elseif isset($album)}
                {jrCore_media_player type="jrAudio_player_dark" module="jrAudio" field="audio_file" search="audio_album = `$album`" order_by="audio_order numerical_asc" limit=100 autoplay=true}
            {/if}
        </div>
    </div>
</div>

</body>
</html>
The various parameters are passed in the url.
Note the first ('all') option which specifies tracks in a random order.
hth
Pa
paul
@paul
02/23/14 02:23:55AM
4,335 posts

Webmaster notification email


Using Jamroom

I've fixed this up ready for the next push
Thanks
paul
@paul
02/23/14 01:36:19AM
4,335 posts

Webmaster notification email


Using Jamroom

You're right!! How come that one has slipped through for so long?
We'll get it fixed up.
Thanks
paul
@paul
02/22/14 08:56:47AM
4,335 posts

Music Site - functionality


Design and Skin Customization

At the moment, no, but I'll upgrade the module so that you can select one or the other, or both, by quota.
updated by @paul: 02/22/14 08:57:23AM
  411