Forum Activity for @douglas

douglas
@douglas
12/29/15 10:47:41AM
2,812 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,812 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,812 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,812 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,812 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);

douglas
@douglas
12/22/15 02:45:42PM
2,812 posts

blog categories


Jamroom Developers

Your welcome!
douglas
@douglas
12/22/15 01:12:52PM
2,812 posts

Url of a custom image


Design and Skin Customization

The example you posted should work.

<img src="{$jamroom_url}/skins/jrElastic/img/img.jpg">

updated by @douglas: 12/22/15 01:13:20PM
douglas
@douglas
12/22/15 06:06:12AM
2,812 posts

blog categories


Jamroom Developers

Here is one way, if you want the categories on the same page as site_blogs... in your site_blogs.tpl, add this:

<div class="block">
    <div class="title">
        <h2>Categories</h2>
    </div>
    <div class="block_content">
        <div class="item p5">
            {capture name="blog_category_template" assign="blog_category_row"}
                {literal}
                     {if isset($_items)}
                         {foreach $_items as $item}
                             <a href="{$jamroom_url}/site_blogs/category/{$item.blog_category_url}" class="media_title">{$item.blog_category|replace:"_":" "}</a>{if !$item@last}&nbsp;-&nbsp;{/if}
                         {/foreach}
                     {/if}
                 {/literal}
             {/capture}
             {jrCore_list module="jrBlog" order_by=$order_by group_by="blog_category" template=$blog_category_row search1="blog_category not_in about,news,welcome,latest,featured,exclusive"}
         </div>
     </div>
</div>

just below this line:

<div class="col9">

then change the jrCore_list function from this:

{jrCore_list module="jrBlog" order_by=$order_by template="site_blogs_list.tpl" search1="blog_category not_in about,news,welcome,latest,featured,exclusive" pagebreak=$_conf.jrMediaProLight_default_pagebreak page=$_post.p}

to this:

{if isset($_post.option) && $_post.option == 'category' && isset($_post._1)}
    {jrCore_list module="jrBlog" order_by=$order_by template="site_blogs_list.tpl" search1="blog_category_url = `$_post._1`" pagebreak=$_conf.jrMediaProLight_default_pagebreak page=$_post.p}
{else}
    {jrCore_list module="jrBlog" order_by=$order_by template="site_blogs_list.tpl" search1="blog_category not_in about,news,welcome,latest,featured,exclusive" pagebreak=$_conf.jrMediaProLight_default_pagebreak page=$_post.p}
{/if}
douglas
@douglas
12/22/15 05:27:50AM
2,812 posts

Download button has gone


Installation and Configuration

If you've set the "Block File Download" or have it checked, then only the master admin will see the download button. The master admin has access to everything.
douglas
@douglas
12/21/15 08:46:29AM
2,812 posts

Support tickets Module


Installation and Configuration

Glad to hear it.

Thanks!
  120