Forum Activity for @michael

michael
@michael
03/11/17 04:36:58PM
7,832 posts

Profile Tweaks not working in ESkin


Installation and Configuration

Glad you got it sorted. :) well done.
michael
@michael
03/11/17 04:34:16PM
7,832 posts

Site Builder Backups


Design and Skin Customization

It does have an EXPORT feature though which is the same as a backup. You can't choose to have it run any more frequently than 24 hours, but you can run it manually whenever you like.

ACP -> MODULES -> SITE -> SITE BUILDER -> TOOLS -> EXPORT BACKUP -> (bottom of the screen) -> EXPORT CHECKED
michael
@michael
03/11/17 04:27:53PM
7,832 posts

Currently Viewed ProfileID


Jamroom Developers

That will give you all the profile info in an array (screenshot of a paused debugger in phpstorm)
profile.jpg profile.jpg - 501KB
michael
@michael
03/11/17 04:25:01PM
7,832 posts

Currently Viewed ProfileID


Jamroom Developers

At that point coming in on $_data you have the url of the profile. (if it wasn't on $_data you could get it from post anyhow)

So use the profile_url that you know from the url to retrieve the profile info
$_profile = jrCore_db_get_item_by_key('jrProfile','profile_url', $_data['module_url']);
That will get the FULL profile along with quota info too, if you just want the profile_????? stuff skip the triggers
$_profile = jrCore_db_get_item_by_key('jrProfile','profile_url', $_data['module_url'], true);
michael
@michael
03/11/17 04:16:28PM
7,832 posts

How to edit JrDocs tabs


Design and Skin Customization

Those tabs are not put there by a template. They are put there by the module, so its not easy to edit them without via a module.

In the modules _init() function the tabs are registered like this:
    // Profile tabs
    if (!isset($_conf['jrDocs_show_toc']) || $_conf['jrDocs_show_toc'] != 'off') {
        $_tmp = array(
            'label' => 64, // Chapters
            'group' => 'all'
        );
        jrCore_register_module_feature('jrProfile', 'profile_tab', 'jrDocs', 'default', $_tmp);
        $_tmp = array(
            'label' => 54,  // Table of Contents
            'group' => 'all'
        );
        jrCore_register_module_feature('jrProfile', 'profile_tab', 'jrDocs', 'contents', $_tmp);
    }

So you could create a new module and add your own button to that location via the same setup.

To edit the .css file, you can put any css in any file in your skin and it will appear in the main compressed .css file for your site.
michael
@michael
03/11/17 03:55:13PM
7,832 posts

How do I restrict/sort Calendar Events from different profile Calendar?


Installation and Configuration

The {jrEvent_calendar} template function takes search="" as a parameter.

Try
{jrEvent_calendar search="profile_quota_id = 1"}
and change the id to the quota you're interested in.
michael
@michael
03/10/17 05:52:15PM
7,832 posts

Group Discussions Allowed Attachments?????


Using Jamroom

not seeing the same thing here, could you send me some login details to your site so I can test. support at jamroom dot net
michael
@michael
03/10/17 04:51:32PM
7,832 posts

Group Discussions Allowed Attachments?????


Using Jamroom

it uses the jrComment module, so:
http://yoursite.com/comment/admin/quota

its a per-quota setting.
michael
@michael
03/10/17 02:55:11PM
7,832 posts

Soundcloud images blurry in lists?


Using Jamroom

the images being used are small:
https://i1.sndcdn.com/artworks-000154478186-1xaws0-large.jpg
https://i1.sndcdn.com/artworks-000154538164-72v0xw-large.jpg

If you can locate a link to a bigger image from soundcloud, then you could change to that, but small images scaled to a bigger box are always going to be blurry.
  252