Forum Activity for @michael

michael
@michael
02/13/17 01:15:28AM
7,832 posts

How do I display Chart results in a table


Design and Skin Customization

Looks like any chart_new_entry is going to display the chart_up.png image. if the chart_direction is 'same' then chart_same.png will show, the others look like they are still using an icon.
michael
@michael
02/12/17 03:14:34PM
7,832 posts

How do users upload and then link to files like pdf's?


Using Jamroom

What @ultrajam said ^.

jrFile will allow you to upload .pdf file types. Then you can use the Embed Local Media to add that PDF to any location.
michael
@michael
02/12/17 01:11:44PM
7,832 posts

How can I change the font color of the byline in the chat?


Using Jamroom

You mean the "type message and press enter" text?

Thats added by the placeholder="" tag on the textarea.

Each browser styles that individually, here's someone writing about how to target that styling on different browsers:

https://css-tricks.com/snippets/css/style-placeholder-text/

To find that article, i searched on "CSS placeholder text"

As far as I'm aware we don't have any styling in the skins that purposely styles that, so just add new rules to your .css file to adjust it.
michael
@michael
02/12/17 01:06:23PM
7,832 posts

How do I display Chart results in a table


Design and Skin Customization

michael:...
It looks like you're trying to use icons as the chart images. Better not to. Better to just use normal skin images...

You're still using icons.
michael
@michael
02/12/17 12:23:16PM
7,832 posts

Adjusting Forum email notification


Using Jamroom

We've got this fixed up for the next release of jrForum ver 2.1.3
michael
@michael
02/12/17 11:25:01AM
7,832 posts

Adjusting Forum email notification


Using Jamroom

Will setup to test this. I understand the issue, just need to replicate it so I can identify the cause.
michael
@michael
02/12/17 11:16:03AM
7,832 posts

How do I display Chart results in a table


Design and Skin Customization

It looks like you're trying to use icons as the chart images. Better not to. Better to just use normal skin images.

Its that icon image setup that is causing your images not to show properly.

Do the chart icons the same way you did the flags.

The play button looks good.
michael
@michael
02/12/17 11:08:05AM
7,832 posts

Global Config>Site Index>Forum Profile URL>Help note - what does this note mean?


Design and Skin Customization

Yes.

What you're seeing here is the pains of flexibility.

traditionally the way to build a skin is to add some config options to collect the desires of the admin, then use those settings to turn on/off sections of the skin.

Site Builder was a method added later that allows the admin user to directly turn on/off sections of the skin without the need to adjust the code.

The config options are still visible in the skin, but Site Builder has taken over as the primary method, so the config options have nowhere to effect. The variables that are set by those config areas still exist waiting to be used, but unless you ARE using them somewhere, they will have no visible effect.
michael
@michael
02/11/17 06:49:16PM
7,832 posts

Unable to download your product


Installation and Configuration

What clicking that DOWLOAD JAMROOM OPEN SOURCE button does is opens one tab with the download on it, then redirects to the docs for install.

If you're not getting the SAVE AS dialog opening to save the package, you can use this link directly to it without the docs redirect:

https://www.jamroom.net/networkmarket/core_download/jamroom-open-source.zip
michael
@michael
02/11/17 05:05:57PM
7,832 posts

How do I display Chart results in a table


Design and Skin Customization

Table HTML looks like this
<table><tr><td></td></tr></table>

Tr is a row

Td is a cell

--edit--
so for your foreach loop you have there in your code, each itteration of the foreach will be one row. then you layout the details you want on that row in each cell

<table>
{foreach $_items as $item}
<tr>
<td>{$item.something}</td>
<td>{$item.something}</td>
<td>{$item.something}</td>
<td>{$item.something}</td>
</tr>
{/foreach}
</table>

updated by @michael: 02/11/17 06:45:08PM
  268