Forum Activity for @paul

paul
@paul
03/12/19 02:37:34AM
4,335 posts

Module - offer/search services or products


Using Jamroom

The Products module supports this.
You can set up Product Categories within it, then for each category you can optionally configure up to five additional text/textarea/select fields that can be entered when creating a product.
hth
paul
@paul
03/11/19 02:28:12PM
4,335 posts

Alphabetical member search


Design and Skin Customization

Open a ticket with your admin login and the template you’re working on and I’ll take a look.
Thanks
paul
@paul
03/11/19 10:24:02AM
4,335 posts

Alphabetical member search


Design and Skin Customization

Yeah - What Douglas said. Include it as a jrCore_list parameter -

{jrCore_list module="jrProfile" order_by="profile_name ASC" quota_id=1 . . . }

If you want multiple quotas you'd need to do it as a search parameter -

{jrCore_list module="jrProfile" order_by="profile_name ASC" search1="profile_name like `$_post._1`%" search2="profile_quota_id IN 1,2,4}

As for the debug listing, if there isn't a {debug} in the template you're working on, there will likely be one left over in a 'row' template somewhere that is likely called by the jrcore_list.

hth
paul
@paul
03/11/19 06:32:34AM
4,335 posts

Alphabetical member search


Design and Skin Customization

Hi - This is fairly straightforward to do in Jamroom and I'd suggest you take a look at one of the skin templates that do this, eg. the MediaPro artists.tpl template.

Basically you generate an A-Z letter list and each letter links to the same page but with the letter as an argument in the url - http://yoursite.com/profiles/by_name/a
The letter would then be available to the template as $_post._1
You could then test for this and add it as a search option in a jrCore_list call -

{if isset($_post._1) && strlen($_post._1) == 1}
    {jrCore_list module="jrProfile" order_by="profile_name ASC" search="profile_name like `$_post._1`%"}
{else}
    {jrCore_list module="jrProfile" order_by="profile_name ASC"}
{/if}

Hope that makes sense
paul
@paul
03/08/19 12:30:58PM
4,335 posts

Testing Update from v4 to v6


Using Jamroom

Quote: I don't find the jamroom4_jrExport_Module for the v4 site

Its actually included with the jrImport module. You'll need to FTP to the JR6 site and grab it from the /modules/jrImport/jamroom4_jrExport_Module folder, then copy it to the JR4 site and configure it there.

Quote: will URL Mapper be useful if I upgrade?

That module was actually developed for user who had imported their Ning sites to Jamroom, but it is fairly general purpose so could well be useful.
updated by @paul: 03/08/19 12:31:48PM
paul
@paul
03/08/19 03:13:03AM
4,335 posts

Making Auto-Follow a Discussion an option by default


Using Jamroom

Thanks - Sorry for not letting you know on this thread.
paul
@paul
03/08/19 03:11:22AM
4,335 posts

Testing Update from v4 to v6


Using Jamroom

Hi - You can download/install the jrImport module via your site's Marketplace module -

ACP=> Core=> Marketplace

Search for 'jrImport'

Documentation on how to import a JR4 site to JR 5/6 here - https://www.jamroom.net/the-jamroom-network/documentation/upgrading-from-jamroom-4/836/how-do-i-upgrade

and here - https://www.jamroom.net/the-jamroom-network/documentation/modules/868/jamroom-4-import

Or we can do it for you - https://www.jamroom.net/the-jamroom-network/serviceshop (scroll to the bottom)

hth
updated by @paul: 03/08/19 03:11:38AM
paul
@paul
03/07/19 09:24:40AM
4,335 posts

Tabs in quota settings


Design and Skin Customization

I've just tried it and yes, the 'section' variable doesn't create tabs, but its does create sections on the quota view page so it does look as though tabs are not available for module quota views - Sorry.
Below is my test quota code and attached is what it looks like.
hth

<?php
/**
 * @copyright 2012 Talldude Networks, LLC.
 */

// make sure we are not being called directly
defined('APP_DIR') or exit();

/**
 * quota_config
 */
function jrXxxx_quota_config(){
    $_tmp = array(
        'name'     => '1111',
        'type'     => 'text',
        'label'    => '1111',
        'help'     => '1111',
        'default'  => '1111',
        'section'  => 'section one',
        'validate' => 'core_string'
    );
    jrProfile_register_quota_setting('jrXxxx', $_tmp);

    $_tmp = array(
        'name'     => '2222',
        'type'     => 'text',
        'label'    => '2222',
        'help'     => '2222',
        'default'  => '2222',
        'section'  => 'section two',
        'validate' => 'core_string'
    );
    jrProfile_register_quota_setting('jrXxxx', $_tmp);

    $_tmp = array(
        'name'     => '333',
        'type'     => 'text',
        'label'    => '3333',
        'help'     => '3333',
        'default'  => '3333',
        'section'  => 'section two',
        'validate' => 'core_string'
    );
    jrProfile_register_quota_setting('jrXxxx', $_tmp);

    return true;
}

Screen Shot 2019-03-07 at 17.24.03.png Screen Shot 2019-03-07 at 17.24.03.png - 38KB
paul
@paul
03/07/19 03:47:30AM
4,335 posts

Tabs in quota settings


Design and Skin Customization

The tabs in ACP Config views are defined by adding a 'section' parameter to the field arrays. For example -
    // System Name
    $_tmp = array(
        'name'     => 'system_name',
        'default'  => $_SERVER['HTTP_HOST'],
        'type'     => 'text',
        'validate' => 'not_empty',
        'required' => 'on',
        'label'    => 'system name',
        'help'     => 'This is the name of your system.',
        'section'  => 'general',
        'order'    => 1
    );
    jrCore_register_setting('jrCore', $_tmp);

I don't think any core Jamroom modules use this in module quota views so not sure if it would work, but you could try it in your custom module quota.php function.
hth
paul
@paul
03/05/19 06:50:58AM
4,335 posts

Discussion "Follow" icon has disappeared for standard users


Using Jamroom

Get GroupDiscuss V1.5.1 from the Marketplace. This should be fixed up now.
Thanks
  68