Forum Activity for @douglas

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

Do "Private Notes" have an outbox?


Using Jamroom

If your looking for "inbox" it is just above "sent box" in the ACP > Communication > Private Notes > Language tab.
douglas
@douglas
12/31/15 12:15:58PM
2,807 posts

jrCore list on the same page


Design and Skin Customization

Do you have a $_conf.wmWowMusic_front_slider_video_1 setting in your ACP > Skin Settings?

And are they YouTube video ID's that were created on your Jamroom site?

Also, if your wanting to use the pagination system, you may want to add a pagebreak and pager parameter to your jrCore_list call.

{capture name="youtube_template" assign="youtube_row_template"}
            {literal}
               {if issset($_items)}

                   {foreach $_items as $item}
                        {$item.youtube_artwork_url}
                        {$item.youtube_title}
                   {/foreach}
               {/if}
            {/literal}
        {/capture}
        {jrCore_list module="jrYouTube" template=$youtube_row_template  search1="_item_id in `$_conf.wmWowMusic_front_slider_video_1`%" pagebreak="5" page=$_post.p pager=true}
douglas
@douglas
12/30/15 05:22:16AM
2,807 posts

jrCore list on the same page


Design and Skin Customization

If I understand you correctly, you can use capture and literal tags to create a jrCore_list template in the same template as the jrCore_list function.


{capture name="youtube_template" assign="youtube_row_template"}
    {literal}
       {if issset($_items)}
           {jrCore_module_url module="jrYouTube" assign="yurl"}
           {foreach $_items as $item}
               Row variables go here...
           {/foreach}
       {/if}
    {/literal}
{/capture}
{jrCore_list module="jrYouTube" search1="youtube_title like `$_post._1`%" search2="_item_id in `$_conf.wmWowMusic_front_slider_video_1`" template=$youtube_row_template page=$_post.p}
douglas
@douglas
12/29/15 01:11:58PM
2,807 posts

solo artist logo image size


Installation and Configuration

You could name your new image logo.png and upload it to your skins/jrSoloArtist/img directory, then you wouldn't have to worry about a size limit.

I'm not seeing a way to change the upload limit on that.
douglas
@douglas
12/29/15 11:38:33AM
2,807 posts

solo artist logo image size


Installation and Configuration

Does the image need to be under 100k?
douglas
@douglas
12/29/15 10:47:41AM
2,807 posts

solo artist logo image size


Installation and Configuration

You can change the size in your skins/jrSoloArtist/header.tpl.

It is this code:

<a href="{$jamroom_url}" title="{$_conf.jrCore_system_name}">{jrCore_image image="logo.png" class="img_scale" alt=$_conf.jrCore_system_name style="max_width:1140px;"}</a>
douglas
@douglas
12/29/15 06:03:01AM
2,807 posts

Form Designer: Check for field


Using Jamroom

You can also check to see if it is set like this:

{if isset($item.audio_itunes_url) && strlen($item.audio_itunes_url) > 0}
<a href="{$item.audio_itunes_url}">{jrCore_image module="jrAudio" image="ituneslogo.png"}</a>
{/if}
douglas
@douglas
12/28/15 11:51:03AM
2,807 posts

CRI: Query Error since updating to 5.3.0b9


Using Jamroom

You'll want to change the active_skin in your database using phpMyAdmin or whatever your hosting control panel has setup to modify your MySQL database.
douglas
@douglas
12/28/15 09:57:38AM
2,807 posts

CRI: Query Error since updating to 5.3.0b9


Using Jamroom

I've seen this error message when I had a bad config.php file for a skin, if you've mad any modifications to your skins config.php file, try reverting them back and see if that fixes it for you.

If you didn't, and your using a cloned or custom skin, you might try going into your database and switching the skin to a unmodified default skin to see if that fixes your issue.

The active skin is set in the jr_jrcore_settings > jrCore > active_skin

Hope this helps!
douglas
@douglas
12/24/15 04:02:14AM
2,807 posts

Private Tracker


Using Jamroom

You'll want to modify your jrTracker modules index.php and change this:

    // Private
    $_tmp = array(
        'name'     => 'tracker_private',
        'label'    => 73,
        'help'     => 74,
        'type'     => 'checkbox',
        'validate' => 'onoff',
        'default'  => 'off',
        'required' => true
    );
    jrCore_form_field_create($_tmp);


to this:

    // Private
    $_tmp = array(
        'name'     => 'tracker_private',
        'label'    => 73,
        'help'     => 74,
        'type'     => 'checkbox',
        'validate' => 'onoff',
        'default'  => 'on',
        'required' => true
    );
    jrCore_form_field_create($_tmp);

  119