Forum Activity for @douglas

douglas
@douglas
12/10/14 05:24:18AM
2,812 posts

Missing Events


Using Jamroom

brian:
Douglas - I'm thinking for the NingJa skin that showing/not showing past events could be a skin config checkbox - would make this easy.

Thanks!

I'll make it happen. :)

Thanks!
douglas
@douglas
12/09/14 09:12:20AM
2,812 posts

Missing Events


Using Jamroom

Ken_Rich:
Awesome - so I guess that's on the schedule for a 1.06 update of the events module, since 1.05 doesn't seem to include it as Michael thought.

That is my guess since my dev site is using the latest event module and shows the search field and my test site is using the same version your using and does not show the search field.

Strumelia:
Just a thought here...
I can understand why a music band's site would not need past events to show- the concert is over, everyone went home...on to the next gig to list as coming event.
However, in a social network kind of setting, I would find it rather odd and abrupt for an event to simply disappear off the face of the earth after midnight of the date it happens....

The event doesn't disappear, It just doesn't show on the upcoming events lists. It will still be listed in the other lists.


Hope this helps! :)
douglas
@douglas
12/09/14 05:32:50AM
2,812 posts

Missing Events


Using Jamroom

You can add this:

 search1="event_date >= `$smarty.now`"

to the jrCore_list functions in your concerts.tpl file.

There are two that this will need to be added to.

1st function
{jrCore_list module="jrEvent" order_by=$order_by template="concerts_row.tpl" require_image="event_image" pagebreak="8" page=$_post.p}

change to
{jrCore_list module="jrEvent" order_by=$order_by search1="event_date >= `$smarty.now`" template="concerts_row.tpl" require_image="event_image" pagebreak="8" page=$_post.p}

2nd function:
{jrCore_list module="jrEvent" order_by=$order_by template="concerts_row.tpl" pagebreak="8"}

change to
{jrCore_list module="jrEvent" order_by=$order_by search1="event_date >= `$smarty.now`" template="concerts_row.tpl" pagebreak="8"}

As for the search form not showing here http://indiegospel.net/event

It doesn't look like that version of the Event module has been released to the public yet.

Hope this helps! :)
updated by @douglas: 12/09/14 05:33:15AM
douglas
@douglas
12/08/14 08:46:03AM
2,812 posts

Missing Events


Using Jamroom

That code will only show upcoming events. Past events will not show.
douglas
@douglas
12/07/14 10:58:37AM
2,812 posts

Issue with message appearing in ProJam5 in videos


Using Jamroom

Do you see this code near the top of the template?

{if $item.chart_direction == 'up'}
    {if $item.chart_change > 10}
        {assign var="chart_image" value="hot_up"}
    {else}
        {assign var="chart_image" value="up"}
    {/if}
{elseif $item.chart_direction == 'down'}
    {if $item.chart_change > 10}
        {assign var="chart_image" value="cool_down"}
    {else}
        {assign var="chart_image" value="down"}
    {/if}
{elseif $item.chart_direction == 'same'}
    {assign var="chart_image" value="same"}
{elseif $item.chart_direction == 'new'}
    {assign var="chart_image" value="new"}
{/if}
douglas
@douglas
12/07/14 09:04:28AM
2,812 posts

Issue with message appearing in ProJam5 in videos


Using Jamroom

You should be seeing this code in that div....

<div class="rank">{$item.list_rank}<br>
{if $item.chart_direction != 'same'}
{jrCore_lang skin=$_conf.jrCore_active_skin id="98" default="moved" assign="chart_position_title1"}
{assign var="cp_title" value="`$chart_position_title1` `$item.chart_direction`"}
{else}
{jrCore_lang skin=$_conf.jrCore_active_skin id="65" default="position" assign="chart_position_title1"}
{assign var="cp_title" value="`$item.chart_direction` `$chart_position_title1`"}
{/if}
{jrCore_image image="chart_`$chart_image`.png" alt="`$item.chart_direction`" title=$cp_title}<br>
{if $item.chart_change > 0}
{$item.chart_change}
{else}
-
{/if}
</div>

Hope this helps! :)
douglas
@douglas
12/07/14 08:39:04AM
2,812 posts

Issue with message appearing in ProJam5 in videos


Using Jamroom

Can you show us the code you have inside the rank div?

<div class="rank">
The code you have here.....
</div>

Thanks!
douglas
@douglas
12/05/14 05:34:00AM
2,812 posts

Add page to the header_menu_mobile.tpl


Installation and Configuration

The header_menu_mobile.tpl is for the main menu on mobile devices.

The code you've posted is from the profile_menu.tpl and is for the profiles menu.

So I'm a little confused with what your trying to do.

Where exactly are you trying to add the link/tab/page and what is the URL for the link/tab/page?

Thanks!
douglas
@douglas
12/04/14 02:53:03PM
2,812 posts

FOURM question?


Installation and Configuration

You can enable/disable the forum per quota in the Forum modules "Quota Config" tab. Note that you'll need more than one quota setup to do this. Most likely and Admin quota for your master admin account and a regular quota for your users.
douglas
@douglas
12/04/14 02:51:15PM
2,812 posts

Code Question 3


Using Jamroom

Instead of trying to explain how it all works, maybe you can let us know what your trying to do and we might be able to help with that a bit easier.

The Ningja skins java file is already setup with the jrLoad function, but there aren't any templates being loaded via java. The jrLoad function is only being used for pagination in the Ningja skin.
  189