Forum Activity for @michael

michael
@michael
12/19/24 10:58:02PM
7,830 posts

ProJam5 video page


Design and Skin Customization

its an issue with the menu, check that that user has the video module enabled. check that the menu hasn't been customized to disable videos. The page itself is visible to logged out users, just there is no menu bar item while logged out.
see.jpg see.jpg - 400KB
michael
@michael
12/19/24 10:53:18PM
7,830 posts

Timeline redesign on Audio Pro similar to followme2 or Beat Slinger 2 Skin


Design and Skin Customization

jrAudioPro2 skin does not have skin level over-rides for the timeline module ('jrAction') where the 'beatslinger' skin does.

You could try copying those over-ride files into your skin, see how far it gets you. They're just module over-ride files so it may work:

action_input.tpl
jrAction_index.tpl
jrAction_item_action_detail.tpl
jrAction_item_detail.tpl
jrAction_item_detail_feature.tpl
jrAction_item_index.tpl
jrAction_item_list.tpl

Its always going to be best if you're working from a cloned skin though because any changes to an jamroom skin structure would get lost if the skin is updated.
michael
@michael
12/19/24 10:45:56PM
7,830 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,830 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,830 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,830 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,830 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,830 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,830 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,830 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.
  10