Forum Activity for @michael

michael
@michael
12/19/24 10:45:56PM
7,778 posts

blog_readmore


Design and Skin Customization

Use the 'page break' button where you want to split the read more. Above that point will show in the list view.
text.jpg text.jpg - 1.1MB
michael
@michael
12/14/24 04:40:15PM
7,778 posts

Forum Category URL -- bad URL


Using Jamroom

When I try to recreate that locally the URL that got created was:
/forum/tech-help-tips-tricks-techniques

Make sure your modules are all up to date. open the CATEGORIES section of your forum. click MODIFY then SAVE CHANGES.

See if that fixes the issue.
cat.jpg cat.jpg - 342KB

updated by @michael: 12/14/24 04:41:01PM
michael
@michael
12/14/24 04:26:33PM
7,778 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,778 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,778 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,778 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,778 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,778 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,778 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,778 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
  5