Forum Activity for @ultrajam

SteveX
@ultrajam
02/13/14 04:02:05AM
2,589 posts

Is there a way for users to re-order their menu tabs on profile page?


Suggestions

You can do a lot with jrProfile_menu, at the moment you can check out the function in jrProfile/include.php to see the other parameters.

One thing worth noting if you are trying to get a custom module to appear is that an item_index.tpl is required in that module, otherwise it won't appear. The function also checks the requirements for the module (in it's init function) and it won't appear if the requirements are not met. And a module won't appear if the profile has no items created yet (but the owner always sees it).

"modules", "exclude_modules", "always_show", "owner_only", "require_login", "order", "targets"

I haven't figured out targets, but it looks like you provide an alternate url for the module.
SteveX
@ultrajam
02/13/14 03:41:43AM
2,589 posts

Documents module missing form designer button?


Suggestions

Thanks Brian!

I'd be very interested in doing that for sections as well if it crops up in the future.
SteveX
@ultrajam
02/13/14 03:18:27AM
2,589 posts

Sharethis Module Not Showing Icons


Installation and Configuration

This happened to me this week - in my case it was the AdBlock firefox extension which prevents the buttons from showing, so it might be worth checking that.
SteveX
@ultrajam
02/12/14 03:55:54AM
2,589 posts

looking for a recommendation on how to implement this


Design and Skin Customization

I created an invite for the beta channel so you should now be able to install ujCategories once you subscribe (invite sent). ujTogether is in the public channel so you should already have access to that.
updated by @ultrajam: 02/12/14 03:57:10AM
SteveX
@ultrajam
02/12/14 03:52:18AM
2,589 posts

Marketplace No Update Feature


Suggestions

If you are going to customise, clone the module. I do that with search and replace but I think jrAparna can do it all for you.

Then when you update your inactive jrAudio module you just compare your active myAudio module to your newly updated jrAudio module, and add the new lines of code.

So in your dev site you have jrAudio (inactive) which is always up to date, and a clone named myAudio (active) which you update at your leisure, if necessary. You can do the same with skins as well.

If it is only the templates that you are changing it's even simpler - just override the module templates in the skin directory.

You can specify requirements for modules in the init function:
function ujIpsumJam_meta(){
    $_tmp = array(
        'name'        => 'Ipsum Jam',
        'url'         => 'ipsumjam',
        'version'     => '1.0.2',
        'requires'    => 'jrCore:5.1.0,jrEmbed',
        'developer'   => 'Ultrajam, ©' . strftime('%Y'),
        'description' => 'Gratuitous Lorem Ipsum Jamming',
        'category'    => 'tools'
    );
    return $_tmp;
}

'requires' => 'jrCore:5.1.0,jrEmbed',
That specifies at least version 5.1.0 of the core, and any version of jrEmbed. The module will install but cannot be activated if it doesn't meet the requirements.
SteveX
@ultrajam
02/11/14 05:22:40PM
2,589 posts

What are you listening to right now?


Off Topic

Beck > guero > first 3 tracks
SteveX
@ultrajam
02/11/14 04:47:50PM
2,589 posts

Duplicate Entry In Debug Log


Jamroom Developers

I know, that's what I meant.

Thanks Nate.
  201