Forum Activity for @michael

michael
@michael
05/29/16 07:10:01PM
7,832 posts

Display a New Module Template?


Design and Skin Customization

Read this:

Docs: "{debug}"
https://www.jamroom.net/the-jamroom-network/documentation/development/1477/debug
Quote:
$_conf = configured variables in the system
$_user = user looking at the screen
$_profile = the profile info of the profile being viewed
$_post = stuff coming in from outside the page
$_items = all the stuff asked for via jrCore_list

Then read the {debug} page.

anything in the $_user array is information from the user looking at the screen
anything in the $_profile array is information from the profile being viewed
michael
@michael
05/28/16 11:31:38PM
7,832 posts

Has The Jamroom Site Showcase Been Removed?


Design and Skin Customization

"Showcase"
https://www.jamroom.net/showcase

Don't think we link to it anymore in the main navigation but the page is still there.
michael
@michael
05/28/16 11:28:05PM
7,832 posts

Where can I see which version of JR my hosted account is using?


Using Jamroom

If its JR5 you'll find the version number at:
ACP -> MODULES -> CORE -> SYSTEM CORE -> INFO

Unless your site is more that 4 years old, it wont be JR4.
michael
@michael
05/28/16 11:25:30PM
7,832 posts

Display a New Module Template?


Design and Skin Customization

what does:
{jrCore_list module="xxSales" search1="_item_id > 0" search2="_profile_id = 1" order_by="_created desc" pagebreak="10" pager="true" page=$_post.p }
show.

Should show only those from profile #1
michael
@michael
05/28/16 11:23:55PM
7,832 posts

First install / Can't create user


Installation and Configuration

you can check the error log too at:
/data/logs

There is probably 'error_log' or 'debug_log' that can be opened with a text editor. Those are all the errors jamroom throws, but if its a server error, check your servers error logs.
michael
@michael
05/26/16 08:22:58PM
7,832 posts

Elastic Skin - Events Module tabs


Design and Skin Customization

michael:..... Their styling is controlled by the template provided by the jrProfile module and found at:
/modules/jrProfile/templates/profile_tabs.tpl
michael
@michael
05/26/16 05:42:01PM
7,832 posts

Elastic Skin - Events Module tabs


Design and Skin Customization

They are registered 'profile_tab' s in the _init() function for the event module found at:
/modules/jrEvent/include.php

This part:
    // Profile tabs
    $_tmp = array(
        'label'  => 'List',
        'active' => 'on',
        'group'  => 'all'
    );
    jrCore_register_module_feature('jrProfile', 'profile_tab', 'jrEvent', 'default', $_tmp);

    // Profile tabs
    $_tmp = array(
        'label' => 'Calendar',
        'group' => 'all'
    );
    jrCore_register_module_feature('jrProfile', 'profile_tab', 'jrEvent', 'calendar', $_tmp);

Their styling is controlled by the template provided by the jrProfile module and found at:
/modules/jrProfile/templates/profile_tabs.tpl
michael
@michael
05/26/16 05:00:21PM
7,832 posts

Messaging Group Members


Using Jamroom

Strumelia:
So Paul, would this then work?:
if I only want this function available in those groups owned by myself or my profile-admins, I can then activate the module for those quotas only, and the result would be that for any groups owned by 'regular' quota members, those group owners would not have the ability to message all group members on their own...correct? And if I wanted 'some' of them to be able to do that, I'd clone their existing quota and give it a new name, and activate the group message for it, ...do I have that right?
thanks!

love this. Easy to see you know what you're doing. :)
michael
@michael
05/26/16 04:43:38PM
7,832 posts

Update Action Data


Suggestions

makes sense. Thanks.
michael
@michael
05/26/16 04:34:34PM
7,832 posts

Display a New Module Template?


Design and Skin Customization

{jrCore_list module="xxSales" search1="_item_id > 0" order_by="_created desc" pagebreak="10" pager="true" page=$_post.p }

to:
{jrCore_list module="xxSales" search1="_item_id > 0" search2="_profile_id = 1" order_by="_created desc" pagebreak="10" pager="true" page=$_post.p }

Will give you only those from profile_id 1.

to make it dynamic, use a variable in there:

{jrCore_list module="xxSales" search1="_item_id > 0" search2="_profile_id = $some_variable" order_by="_created desc" pagebreak="10" pager="true" page=$_post.p }


Which variable you use in the $some_variable position depends on which variables are available, for that see the {debug} info I posted.


Docs: "{debug}"
https://www.jamroom.net/the-jamroom-network/documentation/development/1477/debug
Quote:
$_conf = configured variables in the system
$_user = user looking at the screen
$_profile = the profile info of the profile being viewed
$_post = stuff coming in from outside the page
$_items = all the stuff asked for via jrCore_list
  393