Forum Activity for @ultrajam

SteveX
@ultrajam
02/06/14 06:55:37AM
2,589 posts

What are you listening to right now?


Off Topic

That bloody moped again.
SteveX
@ultrajam
02/06/14 02:50:06AM
2,589 posts

jrSeamless nested in template, always 0 results


Using Jamroom

I think that the problem here is that Seamless uses order_by="_item_id numerical_asc" as the default, which returns no items. When I add an order_by to the list function the correct results are returned.
SteveX
@ultrajam
02/05/14 02:56:43PM
2,589 posts

Where can I download ujCategories ?


General

Idea as to when it might be available? Difficult question, between 3 and 6 months would be my best guess, but that depends on what happens in the mean time.

Personally speaking, if I needed a crucial feature and could do it myself, I would almost always choose to do it myself, even if it took much longer.

That said, this evening I've been thinking about Brian's post here (third post down) and I think I'm going to adopt a similar way of working.:
https://www.jamroom.net/the-jamroom-network/forum/announcements/5017/new-profile-daily-limits-free-module

So if you are interested in sponsoring development in this direction (filtering and sorting across category pages is what I think you are specifically interested in), let me know.
SteveX
@ultrajam
02/05/14 11:25:28AM
2,589 posts

jrSeamless nested in template, always 0 results


Using Jamroom

brian:
Just want to say that Seamless is a bit of a "heavy hitter" - running seamlist lists from within another seamless list template is going to be slow, and you may run into memory issues depending on what you're doing.

Ok thanks Brian. I guess I'll need to ajax it into the page.
SteveX
@ultrajam
02/05/14 11:16:50AM
2,589 posts

jrSeamless nested in template, always 0 results


Using Jamroom

douglas:
I haven't used the seamless module yet, can you show us the functions your using?

Seamless is really neat. I'm using it to list mixed content into grids, which seems to be popular around the web at the moment.

    {capture name="row_template" assign="template"}
        {literal}
            {if isset($_items)}
            <div id="xgrid">
            {foreach $_items as $item}

				{assign var="image_type" value="`$item.seamless_module_prefix`_image"}
				{assign var="seamless_item_title" value="`$item.seamless_module_prefix`_title"}
				{if !strlen($description) > 1}
					{assign var="seamless_item_title" value="`$item.seamless_module_prefix`_name"}
				{/if}
				{assign var="description" value="`$item.seamless_module_prefix`_text"}
				{if !strlen($description) > 1}
					{assign var="description" value="`$item.seamless_module_prefix`_description"}
				{/if}
				{if !strlen($description) > 1}
					{assign var="description" value="`$item.seamless_module_prefix`_bio`"}
				{/if}
				{jrCore_module_url module=$item.seamless_module_name assign="murl"}
				
				<div class="griditem">
				
					<h3>{$item.seamless_module_name|substr:2}: {$item.$seamless_item_title}</h3>
		
					{jrCore_module_function function="jrImage_display" module=$item.seamless_module_name type=$image_type item_id=$item._item_id size="small" alt=$item.profile_name}
		
					{$description}
					
					{$specialsauce}
					
				</div>
		
            {/foreach}
            </div>
            {/if}
        {/literal}
    {/capture}

	{jrSeamless_list modules="jrBlog,jrAudio,jrProfile" order_by="_created NUMERICAL_DESC" template=$template}


The nested part is just a list and template:
{jrSeamless_list modules="jrBlog,jrAudio,jrVideo" search1="_profile_id = `$item.profile_id`" limit="4" template="ujModule_jrSeamless_item_list.tpl"}
I'm going to use it to list a profile's top 4 rated items
SteveX
@ultrajam
02/05/14 10:42:18AM
2,589 posts

Private channel license invite


Using Jamroom

SteveX:
Arrgghh, that is the problem then, I'll send an invite as well as the license!
Sorry Brian, I should have made that edit more prominent. I had created and sent the license but hadn't sent the invite for the channel.

I did then send the invite, Nixt installed the module this afternoon and everything worked fine.

The license features are cool and I'm sure I'll find my way through the process easier second time through.
SteveX
@ultrajam
02/05/14 10:34:09AM
2,589 posts

Where can I download ujCategories ?


General

Categories won't do that for you, but I am using sorting and filtering javascript in another module so it will probably be possible in the future.
SteveX
@ultrajam
02/05/14 08:23:31AM
2,589 posts

jrSeamless nested in template, always 0 results


Using Jamroom

I am using Seamless to list items from several modules. Each item can load in a template which contains another jrSeamless_list. But that nested list always returns 0 items even when valid items definitely exist. The list row template is parsed, but the number of results is always 0.

I'm not sure why or what causes this, so just posting to ask if anyone else has seen anything similar.
updated by @ultrajam: 03/08/14 03:02:37PM
SteveX
@ultrajam
02/05/14 07:27:51AM
2,589 posts

Exclude an item from jrCore_list using search param


Using Jamroom

Maybe I can search and check the item id in the image name and require an image.

It would be very useful to be able to exclude an id. I wanted to load a list of other songs by the profile (ie not the song being displayed) but that doesn't seem an easy possibility.
  205