Forum Activity for @douglas

douglas
@douglas
04/29/15 05:13:59AM
2,812 posts

New Sitebuilder: Pagination icons not showing


Using Jamroom

Are you using the latest version of the new Site Builder or are you using the old one?

If you are using pager=true in your jrCore_list function, that will only work for one list per page, you can't use the pager more than once per page.

If you are using the newest Site Builder, you can set the "Container Settings" to a "Tabbed" layout and paging should work for each list separately.
douglas
@douglas
04/25/15 06:23:09AM
2,812 posts

Featured discussions


Ning To Jamroom

Okay, I'm seeing something odd here too, I'll get a ticket open on it and see what Brian says.
douglas
@douglas
04/24/15 09:22:04AM
2,812 posts

Featured discussions


Ning To Jamroom

I searched your forum database for those two ID's and the search came up empty. Can you send a link to those posts your wanting to feature?
douglas
@douglas
04/24/15 08:58:20AM
2,812 posts

Featured discussions


Ning To Jamroom

These two ID's do not exist.

147222,146372

How are you getting the post ID's?

If you go to the post you want to feature, you can look in your browser address bar and the number you see in the URL is the post ID.
updated by @douglas: 04/24/15 08:58:44AM
douglas
@douglas
04/24/15 08:27:23AM
2,812 posts

Foxycart help


Jamroom Help

Glad you figured it out. :)
douglas
@douglas
04/24/15 08:26:17AM
2,812 posts

Featured discussions


Ning To Jamroom

Do you have a link to the page I can check out?
douglas
@douglas
04/24/15 07:53:44AM
2,812 posts

Featured discussions


Ning To Jamroom

I just added this to that template and I'm not seeing an issue.

<div class="block">
    <div class="title">
        <h1>Featured</h1>
    </div>
    <div class="block_content">
        <div class="item">
            {capture name="featured_template" assign="feat_row"}
                {literal}
                    {if isset($_items)}
                        {foreach $_items as $_itm}
                            {$_itm.forum_text|jrCore_format_string:$_itm.profile_quota_id}
                        {/foreach}
                    {else}
                        No records found
                    {/if}
                {/literal}
            {/capture}
            {jrCore_list module="jrForum" search1="_item_id = 1" template=$feat_row}
        </div>
    </div>
</div>

If you are only going to show 1 featured post, change the search to an = instead of IN and make sure your are using the correct ID for the post.
douglas
@douglas
04/24/15 07:44:35AM
2,812 posts

Link audio genres to a search result


Design and Skin Customization

If you have the ProJam or MediaPro skins you can see how it is done in them, and maybe use that as a guide to setup your Nova skin to list by genres.
douglas
@douglas
04/23/15 02:14:55PM
2,812 posts

Link audio genres to a search result


Design and Skin Customization

This isn't going to be that easy since Nova is not really setup to handle genres.

I'm kind of busy at the moment but when I get a chance I can see what it would take to get this working for the Nova skin.
douglas
@douglas
04/23/15 09:39:56AM
2,812 posts

Featured discussions


Ning To Jamroom

White Agency:
Currently got this code which only works as the item_id is a post that belongs to the owner of the forum. If I put in any other item_id then nothing is returned.

{jrCore_list module="jrForum" search1="_item_id IN 15624" template="wafeatured_posts.tpl"}

template:-

{if isset($_items)}

{foreach $_items as $_itm}


{$_itm.forum_text|jrCore_format_string:$_itm.profile_quota_id}


{/foreach}

{else}
No records found
{/if}


Cheers

Dave

What template are you adding the jrCore_list function to?
updated by @douglas: 04/23/15 09:40:13AM
  157