Forum Activity for @michael

michael
@michael
12/13/17 01:32:11AM
7,826 posts

Market place error


Jamroom Developers

What actions are you taking that cause that error to occur?
michael
@michael
12/13/17 01:30:31AM
7,826 posts

"Media URL could not be loaded."


Using Jamroom

yeah, agree with gary. Whats the goal?

Probably you're wanting to use a {jrCore_list} call to create the $_items THEN pass those items to the {jrCore_media_player.....}
michael
@michael
12/11/17 05:37:57PM
7,826 posts

New SignUp Listener


Jamroom Developers

Its easy. you just need to figure out where you want to interact with the data. See the explanations for details.

'signup_validate' is when the form is submitted, but before the account has been created, 'signup_created' is when the form looks ok, but the user hasnt confirmed their email address, 'signup_activated' is when they confirm their email address, then 'login_success' is when they login. If you want to know if its the FIRST time they have logged in, query the database for last login time and if its blank you know its their first time, so do what you need to do.
michael
@michael
12/11/17 04:11:28PM
7,826 posts

New SignUp Listener


Jamroom Developers

If you look in the jrUser module's _init() function you'll see the events it fires. The ones you're probably interested in are:
    // register our triggers
    jrCore_register_event_trigger('jrUser', 'signup_validate', 'Fired when a user submits account data for a new account');
    jrCore_register_event_trigger('jrUser', 'signup_created', 'Fired when a user successfully signs up for a new account');
    jrCore_register_event_trigger('jrUser', 'signup_activated', 'Fired when a user successfully validates their account');
    jrCore_register_event_trigger('jrUser', 'login_success', 'Fired when a user successfully logs in');
......

Pick one of those that suits where you want to interact with the flow and define a listener in your module, then when the event fires you can do your stuff.

Docs: "Events and Listeners"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1011/events-and-listeners
michael
@michael
12/10/17 12:28:40PM
7,826 posts

Hosted Uploading Videos Issues on Audio Pro


Design and Skin Customization

specifically:
This template:
your-site.com/core/template_modify/skin=jrAudioPro/template=jrAudioPro_video_player.tpl

was changed from 'video_file_mobile' to 'video_file'
updated by @michael: 12/10/17 12:29:03PM
michael
@michael
12/09/17 07:08:57PM
7,826 posts

Hosted Uploading Videos Issues on Audio Pro


Design and Skin Customization

Send us your login details and I will have a look at it. send to support at jamroom dot net
michael
@michael
12/09/17 05:12:05PM
7,826 posts

Hosted Uploading Videos Issues on Audio Pro


Design and Skin Customization

There was this issue from a while back:
https://www.jamroom.net/michael/blog/96/upgrading-to-jamroom-61-videos-have-gone

but if its playing on other skins, then its probably a template issue. Does your skin have any customizations to the player template?
michael
@michael
12/09/17 05:08:00PM
7,826 posts

Trial Pro Install Failed


Installation and Configuration

Try running the repair.php script, directions here:
https://www.jamroom.net/the-jamroom-network/documentation/troubleshooting/114/somethings-wrong-what-do-i-do#if-you-cannot-get-in-to-the-acp

If that fails download and install the opensource version, then put your key into it and it will become PRO
michael
@michael
12/09/17 04:06:56PM
7,826 posts

Gallery Photos showing as placeholder photos


Using Jamroom

Sounds like the profile is private.

If it shows up as a placeholder, use the "View Image" feature of your browser to visit JUST the image's url to see if there is any other info.
michael
@michael
12/08/17 06:40:22PM
7,826 posts

Add Attending Button To Profile


Design and Skin Customization

sure, you could wrap another div around whichever you want to change and then target it with CSS
.some_named_div .event_attend_button{
// whatever style you want here
}

updated by @michael: 12/08/17 06:41:03PM
  168