Forum Activity for @michael

michael
@michael
12/14/24 04:26:33PM
7,746 posts

Forum Category URL -- bad URL


Using Jamroom

Try changing the & for 'and', see if that fixes it.
michael
@michael
12/12/24 04:16:32AM
7,746 posts

Purchased module not showing up correctly


Installation and Configuration

if the MARKETPLACE id lines up with your account then you should be able to install it without it asking for payment, you already have that module. Try running the integrity check. If that still fails and you want me to login and take a look send some admin login details to support at jamroom dot net attn: michael along with a link to here.

im off to bed now, but will take a look tomorrow.
michael
@michael
12/12/24 04:11:05AM
7,746 posts

Purchased module not showing up correctly


Installation and Configuration

sure, its under the JAMROOM SITES tab in your ACCOUNT section, heres the link for you:
https://www.jamroom.net/networklicense/licenses/profile_id=8800/user_id=8791

--edit--
and you put it into your site in the MARKETPLACE section, heres a screenshot
id.jpg id.jpg - 224KB

updated by @michael: 12/12/24 04:13:12AM
michael
@michael
12/12/24 02:11:38AM
7,746 posts

Importing members from Ghost


Using Jamroom

I've not used it, but we have a module "user Import"
https://www.jamroom.net/the-jamroom-network/networkmarket/606/user-import

Is that what you're after?
michael
@michael
12/12/24 02:08:32AM
7,746 posts

Purchased module not showing up correctly


Installation and Configuration

If you're on jamroom hosting then all modules we make are free for as many sites as you care to build.

If you've moved from jamroom hosting to somewhere else then a license is required.

If you've purchase the jrAudio module but its coming up like you haven't, then check the marketplace ID in your ACP matches the account you used to purchase the module.

If all that is ok, run the INTEGRITY CHECK tool from the ACP, followed by the RESET CACHES tool and see if its ok then.
michael
@michael
12/10/24 12:18:28AM
7,746 posts

videos play when hoovering


Design and Skin Customization

In which case the general concept would be to put those on the surrounding DIV that houses the player. You may need some sort of id for the player.

Depending on which player you're using how to do it will be different. You'll need to find a way to communicate with the player.

I'd expect that the player is defined on a javascript variable probably. Probably something like
 video_player_h2xkeYNr
Some sort of unique identifier.

So on the DIV add
onmouseover="xxYourModule_play_hover_video('video_player_h2xkeYNr')" onmouseout="xxYourModule_stop_hover_video()"

Then your functions in your .js file would be
function xxYourModule_play_hover_video(id){
  id.play();
}

function xxYourModule_stop_hover_video(){
  StopAllPlayers();
}


That's psudo code but hopefully gives you a point in the right direction.
michael
@michael
12/10/24 12:09:37AM
7,746 posts

Graph module


Using Jamroom

The underlying graphing system is this one:
https://www.flotcharts.org

You'll see there are a ton of ways to use that system. The jrGraph module is just scaffolding around that.

For a simple-ish example look in the jrTracker_report_created_resolved() function in the jrTracker module. It plots tickets opened vs tickets closed
report.jpg report.jpg - 161KB
michael
@michael
12/08/24 11:14:17PM
7,746 posts

ProJam5 video page


Design and Skin Customization

I would expect it to work outside the profile page. Maybe add something to it, so

Create a template in your active skin called something unique, say 'avacardo'. that seam safe.

/skins/YOUR SKIN/avacardo.tpl

inside that put:
this is the avacardo template.<br>
{jrCore_list module="jrCombinedVideo" template="avacardo_video.tpl"} 
Then make another file called 'avacardo_video.tpl' and inside that put:
here I am in the avacardo video template


When you visit yoursite.tpl/avacardo you should see both of those lines of text. If you can then add {debug} to see what info you have.

Docs: debug
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1477/debug

here I am in the avacardo video template
{debug}

updated by @michael: 12/08/24 11:14:42PM
michael
@michael
12/08/24 11:04:54PM
7,746 posts

videos play when hoovering


Design and Skin Customization

You used to be able to, but I think its being blocked by browsers now. Using the 'Follow Me' skin I turned on a setting built into the skin "Auto Play" and it looks like it tries to do something when I scroll the timeline but none of them actually play.

I suspect you probably could get it to work using
onmouseover=""
in combination with a javascript function to start the player.

I suspect that might not work across all browsers.

As to they why: I remember a few years ago when I would ctrl+click to open many new tabs and if a couple had auto play on I'd get a ton of noise and not know where it was coming from. Thats probably related to the reason the browser blocks it.
auto.jpg auto.jpg - 295KB
michael
@michael
12/08/24 10:53:43PM
7,746 posts

Graph module


Using Jamroom

Its more of a helper module. Not all modules do something that's customer facing.

If you have the Graphs module turned on then you will see buttons on the dashboard that charts the data, eg signups this month, the graph will show how many per day.

Yes you can use its functions inside a module you build to display things in chart or graph form. That would save having to build that functionality but there's no buttons or controls really.
graphs.jpg graphs.jpg - 230KB
  2