Forum Activity for @michael

michael
@michael
06/09/16 09:06:23PM
7,826 posts

Packaging Module for Marketplace.


Design and Skin Customization

Check the "Export Form Designer" checkbox when you package it.

Docs: "Packaging a module for the marketplace"
https://www.jamroom.net/the-jamroom-network/documentation/development/3440/packaging-a-module-for-the-marketplace
michael
@michael
06/09/16 09:04:20PM
7,826 posts

Advanced Charts


Installation and Configuration

"MySQL server has gone away" is a server problem, that should not happen. Need to ask your server company about that one, may have hit some sort of limit.
michael
@michael
06/09/16 04:47:31PM
7,826 posts

jrEmbed 1.3.6 to 1.3.7 update breaks parameter value into array


Jamroom Developers

jrEmbed 1.3.8 is in the marketplace now. update or reload that module and it should be sorted.

(it was there for a short time without this fix, so reload if you are already running 1.3.8)
michael
@michael
06/09/16 04:28:44PM
7,826 posts

Google Analytics for Custom Domains


Suggestions

Interesting idea. Quite ingenious actually. Not sure about how google will handle it.

As for getting whatever code you want out there, if you require input from the user for the profile, go to
PROFILE SETTINGS -> FORM DESIGNER and add a form field. Maybe a textarea field if you want them to paste the whole script in there, or just a text field if you just want their id.

Then in the profile_footer.tpl, check for that being populated and add the code in.
michael
@michael
06/09/16 04:24:39PM
7,826 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,826 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,826 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,826 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,826 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,826 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.
  386