Forum Activity for @michael

michael
@michael
11/05/15 09:58:48PM
7,832 posts

Anybody know how to change the border bottom lines?


Design and Skin Customization

If you can change it in firefox, check what the css class was where you changed it.

On your site the skin in use is the jrNingja skin.

PROBLEM:
It has a short-hand CSS property.
    border-bottom: 1px solid #CCCCCC;
and the STYLE tab doesnt know how to format that to allow for changes. It needs to be expanded to the long hand version in the /css/list.css file. The expanded version is:
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #CCCCCC;

I'll get that changed and released so you can update it from:
ACP -> SKINS -> NINGJA -> STYLE -> (search) .item

Give me 5 min, then update ningja from the marketplace.
michael
@michael
11/05/15 01:10:23AM
7,832 posts

adding slidebar menu to tablet mode


Design and Skin Customization

Hard to say. I think the mobile stuff tries to detect if your device is a mobile device to determine which menu to show them.

Sounds like your tablets are returning that they are not mobile devices so get the desktop version. Desktops dont have swipe capabilities so no need for a slide bar.

Probably ok, give it a bit of a test and go with it if it looks like its working.
michael
@michael
11/05/15 01:07:12AM
7,832 posts

Creating Default Galleries


Using Jamroom

yeah, that is just a notice to output whatever notice is coming out. by deactivating it your opting-out of all notices from anywhere.

Its like cutting the cable to the oil lamp on your dashboard instead of putting more oil in the engine.
michael
@michael
11/05/15 12:52:21AM
7,832 posts

Main profile of power user


Jamroom Developers

The code to get the current users profile home key is:
$_profile_id = jrUser_get_profile_home_key('_profile_id')

If your not looking for the current user, then its the '_profile_id' that is stored in the jrUser datastore.
michael
@michael
11/04/15 04:31:24PM
7,832 posts

google analytics question


Using Jamroom

Should work now. I needed to change it from 'being built' to 'viewable by everyone'. sorry.
michael
@michael
11/04/15 01:32:07AM
7,832 posts

where's the jrUser 'bot button' code update located?


Using Jamroom

The issue exists because one of your usernames is really long.

Its forcing the table to be wider than the col9.

It can be fixed by adding:
#item-work { 
    overflow-x: auto;
}
To one of the CSS files.

Probably should be a core fix though.
michael
@michael
11/04/15 12:16:12AM
7,832 posts

incorrect storage showing in dashboard


Installation and Configuration

The data being retrieved for that panel is collected by the jamroom function: jrCore_get_disk_usage().

It does get cached, so try clearing your caches to see if that fixes the issue.

From there the functions run are:
"disk_total_space()"
http://php.net/manual/en/function.disk-total-space.php

and
"disk_free_space()"
http://php.net/manual/en/function.disk-free-space.php

which do the actual server contacting and info getting.
michael
@michael
11/03/15 10:18:55PM
7,832 posts

Dashboard


Jamroom Developers

Let me know whats missing from these docs:

"Development: Dashboard Panel"
https://www.jamroom.net/the-jamroom-network/documentation/development/3156/dashboard-panel
  469