Forum Activity for @michael

michael
@michael
03/14/14 03:18:56AM
7,832 posts

Profile Pages - set item order


Using Jamroom

Working for me here in Chrome.
michael
@michael
03/14/14 01:53:11AM
7,832 posts

Event time drop down question


Design and Skin Customization

I can tell you where it is, but its not alterable.

Its here:
/modules/jrCore/lib/form.php line 1919 ish.
    while ($date_s < $date_e) {
        $hour = strftime($format, $date_s);
        $_hr[$hour] = $hour;
        $date_s += 900;
    }


that += 900; is + 900 seconds, which is 15min.

If you change that to 1800 it will be 30min intervals.

next update of core will set it back to 15min intervals though.
michael
@michael
03/13/14 11:58:30PM
7,832 posts

Just amazing


Off Topic

Looking real nice. Well done.
michael
@michael
03/13/14 01:12:12AM
7,832 posts

Tutorial


Using Jamroom

This is probably the video you want:

"udemy secton 3: adding features to your community"
udemy secton 3: adding features to your community

Its part of the free course:

"Start Your Own Online Communty"
https://www.udemy.com/start-your-own-online-community

The steps to add a blog to a users profile are:
* login
* go to your profile
* click on the BLOG tab
* click on the + button to create a blog
* save.

If you dont see the BLOG tab on your profile then that user is not in a quota that is allowed to use blogs.

So you have 2 choices as the admin
#1: change that user to a quota that IS allowed to use blogs
#2: change the settings of the quota that the user is currently in to allow all users in that quota to use blogs. (this would be found on the 'user blog' module in the ACP while logged in as the admin.)
michael
@michael
03/13/14 12:12:42AM
7,832 posts

Translations for Nova Skin


Tips and Tricks

Thats so awesome, thanks @mad
michael
@michael
03/11/14 11:07:36PM
7,832 posts

@michael at my place


Feedback

I think I want one of these now:

NC700S (see pic)

I did love the vulcan 900 but think its a bit big for Tokyo street commuting....

:)

It was really cool meting you to @MAD© . You are the first person I have met that develops with Jamroom. I guess I'll meet Paul, Brian, Doug someday.
nc700s-600x400.jpg nc700s-600x400.jpg - 40KB

updated by @michael: 03/11/14 11:07:53PM
michael
@michael
03/04/14 08:12:35PM
7,832 posts

.js file can't take more than 1 refresh call?


Design and Skin Customization

Javascript is pretty difficult to debug at the best of times. Trying to figure out what your issue is with just a small snipit of code is very difficult.

Can't offer any advice other than javascript is fickle. Make sure your page validates. Then work through it one step at a time until you find where it goes wrong.
michael
@michael
03/04/14 08:09:57PM
7,832 posts

Mobile Skin Redirect


Design and Skin Customization

You would need to do it in a module I would think.

Take a look at the admin skin module. It allows one skin to be used in the admin area while another is used on the front end.

Same concept.
michael
@michael
03/04/14 06:06:16PM
7,832 posts

Is there a way to set static prices on audio items?


Using Jamroom

I would build another module that swapped out the jrFoxyCart modules input field and changed it for a select system.

* New Album
* Standard Album
* Sale Album

Then listened for that and populated it with the price.

Its the 'events' and 'listener' system:

https://www.jamroom.net/the-jamroom-network/documentation/development/1011/events-and-listeners
  722