Forum Activity for @douglas

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

blog categories


Jamroom Developers

Your welcome!
douglas
@douglas
12/22/15 01:12:52PM
2,807 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,807 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,807 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,807 posts

Support tickets Module


Installation and Configuration

Glad to hear it.

Thanks!
douglas
@douglas
12/21/15 06:56:54AM
2,807 posts

Sign up form


Design and Skin Customization

There isn't a template for the signup form, it is hard coded in the jrUser modules php files.

Can you let us know what your trying to accomplish?

Thanks!
douglas
@douglas
12/21/15 06:48:41AM
2,807 posts

Support tickets Module


Installation and Configuration

I just tested it here, that field only shows to admin users, it should not show to a regular users that has access to create a ticket.
douglas
@douglas
12/21/15 06:38:23AM
2,807 posts

blog categories


Jamroom Developers

Which skin are you using?
douglas
@douglas
12/21/15 06:31:08AM
2,807 posts

Support tickets Module


Installation and Configuration

1. That field is so you can open the ticket on behalf of another email address.

2. Sure, just enclose your tab code in and if statement checking to see if the viewer is logged in.

{if jrUser_is_logged_in()}
Your tab code here...
{/if}

If you want it on the bottom of every page, put it in your footer.tpl file.
douglas
@douglas
12/17/15 05:11:32AM
2,807 posts

newest ningja skins do not work right for me


Ning To Jamroom

I think the issue here is your wanting us to test/fix something that is no longer supported.

You really shouldn't be using the old site builder modules, they are not compatible with the latest skins.
  120