Forum Activity for @michael

michael
@michael
12/11/13 01:59:58AM
7,832 posts

Featured artists and Top members issue


Installation and Configuration

by "on the featured section" do you mean the "Image Slider IDs" in the skin settings?
michael
@michael
12/11/13 01:33:05AM
7,832 posts

SOLVED - Change default Account Type on sign up page


Installation and Configuration

This has been fixed for the next version. If you want to add the change yourself, here is the code:

  // Show Signup Options
    if (isset($_opt) && is_array($_opt) && count($_opt) > 1) {
        $_tmp = array(
            'name'     => 'quota_id',
            'label'    => 59,
            'help'     => 60,
            'type'     => 'select',
            'options'  => 'jrProfile_get_signup_quotas',
            'validate' => 'number_nz'
        );
        jrCore_form_field_create($_tmp);
    }

above is what it is now, change it to:
  // Show Signup Options
    if (isset($_opt) && is_array($_opt) && count($_opt) > 1) {
        $_tmp = array(
            'name'     => 'quota_id',
            'label'    => 59,
            'help'     => 60,
            'default'  => $_conf['jrProfile_default_quota_id'],
            'type'     => 'select',
            'options'  => 'jrProfile_get_signup_quotas',
            'validate' => 'number_nz'
        );
        jrCore_form_field_create($_tmp);
    }

Its just this line thats added:
'default'  => $_conf['jrProfile_default_quota_id'],

its in:
/modules/jrUser/index.php around line 720 ish
michael
@michael
12/11/13 12:40:23AM
7,832 posts

Share This Module (Feature question)


Using Jamroom

The flash player will be for use on facebook because facebook doesn't allow embedding of html5 players into the timeline.
michael
@michael
12/09/13 09:01:33PM
7,832 posts

Your site is low on disk space


Off Topic

Try to free up disk space.

or increase the size of your server.
michael
@michael
12/09/13 08:47:00PM
7,832 posts

Admin Pagination


Design and Skin Customization

A nice way to handle the pagination for something like that would be one of those bars on the bottom of the list that reads something like "show more" that then tacks on the next page to the bottom of the list via ajax.

Just a design concept thought really.
michael
@michael
12/09/13 08:44:00PM
7,832 posts

Audio Pages Problem


Design and Skin Customization

ah, gotcha. Glad to hear its working perfect now. :)
michael
@michael
12/09/13 08:42:44PM
7,832 posts

SOLVED - Block only viewable if populated with at least one field?


Design and Skin Customization

ba9801:Love how this system works and the more i"m learning about it the more I love it!

Put that on twitter and I'd retweet it. ;)

Great to hear.
michael
@michael
12/09/13 08:36:15PM
7,832 posts

SOLVED - YouTube and Playlists


Installation and Configuration

ba9801:On Another note @michael, is there any progress on this yet?
https://groups.google.com/forum/?hl=en&fromgroups=#!topic/jplayer/-kWX9xEln70
I'm not totally sure. There's no new updates in the google group.

@johnchansa seams to have located something along these lines on this thread:
https://www.jamroom.net/the-jamroom-network/forum/using-jamroom/2922/jr5-jplayer-and-youtube

johnchansa:
I remember asking about this a while ago.It was not possible then.I found this info which may be of interest:

"hi i have found this http://p-stevenson.com/free-stuff/jplayer.php where the owner managed to implement youtube video into jplayer. http://p-stevenson.com/free-stuff/demo/jplayer/youtube-custom.html
please note when you download the demo files there is a bug in the youtube player to fix it just go to http://p-stevenson.com/free-stuff/demo/jplayer/youtube-custom.html and copy the source and over ride the demo file for youtube and it will work."


Not sure if that is going to find its way into jPlayer or not, or if its allowed to be in jplayer.

Spending most of my time doing promo for jamroom to let the world know it exists and showing developers how to build stuff for it, so haven't looked much into it really.
  756