Forum Activity for @douglas

douglas
@douglas
12/12/14 10:20:13AM
2,807 posts

Gallery Photo Titles


Suggestions

Or you can add an image title field via the form designer and then add that variable to your templates.
douglas
@douglas
12/11/14 10:32:06AM
2,807 posts

jrpages visibled on main site are invisible


Ning To Jamroom

soaringeagle:
not sure if this is related but im trying the integrity test thinking that might find the problem but while verifying skins it just stops and never completes ..i think at the active skin but cant be sure

Are you getting any errors?

You can see them in the ACP > Core > Tools > Activity Logs if there are any.

Post any errors here if you are seeing errors being reported.

Thanks!
updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
12/11/14 10:22:46AM
2,807 posts

Events Listing problem


Design and Skin Customization

The MediaPro templates have just been updated, and they are listing correctly. You are right, the order_by should be desc not asc, but I'm not seeing an issue.

Note that the newest list is listed by when the even was created, not by the event date.

Hope this helps! :)
douglas
@douglas
12/10/14 07:59:28AM
2,807 posts

forum hybrid view and activity feed (members joining) suggestions


Ning To Jamroom

You are correct SE, the new version has not been released yet, we want to make sure all the modules it uses are at their latest version before releasing the skin that uses new features from those modules.

Once the modules are available to the public, the new version of the jrNingja skin will be released too.

Hope this helps! :)
updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
12/10/14 05:27:50AM
2,807 posts

Missing Events


Using Jamroom

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

When i click on the "all" link it still only shows coming events, and when I go to my site's main events area (mysite).com/event - doesn't show past events there either. Douglas, what 'other lists' do you mean, where I or my members could see past events? Sorry I am looking but not finding past events in any list of Events (Ningja skin) nor is there a search feature within Events module (which as I hear, is coming).

I don't think the Ningja skin shows anything but upcoming events, which is obviously about to be changed. ;)

The skin Ken has modified is a clone of the Nova skin which has a list for upcoming, newest, and highest rated events as well as an event location list. The only list in that scenario that doesn't show past events is the upcoming list.

Hope this helps! :)
douglas
@douglas
12/10/14 05:24:18AM
2,807 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,807 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,807 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,807 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,807 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}
  188