Forum Activity for @michael

michael
@michael
06/09/16 04:24:39PM
7,832 posts

Rated Count


Design and Skin Customization

Very cryptic. I'll guess: yes.

But then again it could be a puzzle, I'll go look at the code.......

Seams to me that config setting is probably referring to the skin setting found at:
ACP -> SKINS -> ELASTIC -> GLOBAL CONFIG -> PROFILES -> Recently Rated Count
Quote: How many "Recently Rated" item should be shown in the Profile sidebar? Set to 0 (zero) to disable showing Recently Rated Items.
michael
@michael
06/09/16 01:32:24AM
7,832 posts

Recurring search error in Activity Log


Using Jamroom

:) don't freak out if something looks like it went wrong. Put the site into maintenance mode and outline it here in the forums, we'll be around to help. :)
michael
@michael
06/09/16 01:29:15AM
7,832 posts

Another 'data too long' error....


Using Jamroom

Think we have this sorted for the next release of the forum module.
michael
@michael
06/08/16 08:37:15PM
7,832 posts

How to limit LENGTH of gallery names & Image names?


Using Jamroom

(thought this was going in a different thread... ;) ) Thats the truncate function.

Smarty: Truncate
http://www.smarty.net/docs/en/language.modifier.truncate

In whichever template controls those titles being displayed it will look something like
{$item.gallery_title}
change that to
{$item.gallery_title|truncate:80}
to cut off at 80 characters, or if you want the ... then its
{$item.gallery_title|truncate:80:"..."}

Identifying which template it is is probably the most difficult thing, do you know which it is?
michael
@michael
06/08/16 07:56:59PM
7,832 posts

Advanced Charts


Installation and Configuration

If you have any of these skins:
* flashback
* mediapro
* nova
* projam
* sage
you can copy the code from the music_chart_row.tpl file. Think thats what your talking about?

They uses the Advanced Charts module and do a bit of checking to see which image to display.

        {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}

then display that image:
{jrCore_image image="chart_`$chart_image`.png" alt="`$item.chart_direction`"}

Thats not part of the charts module though, its just skin design.
michael
@michael
06/08/16 07:46:14PM
7,832 posts

"My Posts" isn't really my posts.


Using Jamroom

maybe "my threads" is more accurate. or "threads im involved in" but thats not a great tab title.
michael
@michael
06/08/16 07:42:52PM
7,832 posts

How to limit LENGTH of gallery names & Image names?


Using Jamroom

it puts a limit on the form field, so wont effect any existing titles.

It will effect existing titles if they try to update because it will show the form field.

It has no effect on uploading photos thats a different form field.

The only time the file name is used is if the file is downloaded. and perhaps in display sometimes. you can alter that in the templates.
michael
@michael
06/08/16 07:33:13PM
7,832 posts

How to limit LENGTH of gallery names & Image names?


Using Jamroom

open up the gallery create screen as an admin user, click on the "Form Designer" button.

gallery title -> modify

in the max column enter the 5 if you want the title limited to 5 characters.
michael
@michael
06/08/16 05:46:35PM
7,832 posts

player invisible buttons


Using Jamroom

Not understanding why that code is pasted there.
  387