Forum Activity for @michael

michael
@michael
02/12/17 11:16:03AM
7,826 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,826 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,826 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,826 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
michael
@michael
02/11/17 11:02:25AM
7,826 posts

Adding view count for Forum threads?


Design and Skin Customization

what that means is there was no number that came in. The error is saying "In order to get you what you are after I need to know the _item_id, but it didn't come in."

So the request is to check that you have the right variable. You need to check that the variable that you are expecting to pass in the _item_id actually contains a number.

So in this case {debug} is what you want. You'd put {debug} in the template just above where your {jrCore_counter.....} is to find out whether $items[0]._item_id contains a number or not.

In this case we know it doesnt because the counter is complaining. So we need to see if the forum's _item_id is there on some other variable.

---
question: what file are you editing?
michael
@michael
02/10/17 07:55:59PM
7,826 posts

Soundcloud


Installation and Configuration

not needed approval before. let us know how it goes.
michael
@michael
02/10/17 11:21:18AM
7,826 posts

Simple Chat Auto Scroll


Using Jamroom

I see it occasionally it will get stuck, then I type something and it will all come back again.

Usually its fine. Seams to happen if I have many tabs all with chat open on them and I switch to one I havent used in a while.

Try popping out the chat to its own tab, see if that helps.
michael
@michael
02/10/17 11:16:46AM
7,826 posts

How to set default profile index?


Design and Skin Customization

Zachary Moonshine:
same thing it just keeps putting the home as the default, it must be the skin?

when does it do this? could you describe what actions you are taking to see if it is working please.

It should activate when you visit the profile url. If you visit a specific URL you can still see that.
  268