Forum Activity for @garymoncrieff

gary.moncrieff
@garymoncrieff
12/06/14 02:18:30AM
865 posts

New Widget button disappears after sending widget to bin


Using Jamroom

Hey Michael

I made a video rather than try to explain this, but basically if you drag a widget to the bin, you cant add another before refreshing page.
new widget option
updated by @garymoncrieff: 12/22/16 11:55:59AM
gary.moncrieff
@garymoncrieff
12/06/14 02:17:02AM
865 posts

Added a new module: "Site Builder - Construction Kit"


Using Jamroom

Checking it out now, I can understand the logic of this and when you include the predefined widgets this will become a lot clearer to people as to why you changed the logic.
updated by @garymoncrieff: 12/22/16 11:55:59AM
gary.moncrieff
@garymoncrieff
12/04/14 12:44:45PM
865 posts

future feature request ninglike (but better) chat module


Ning To Jamroom

Its on your own server unless you pay for comet service, hence why this and other php/mysl chat systems can be a complete resource hog.
updated by @garymoncrieff: 12/29/14 09:23:54AM
gary.moncrieff
@garymoncrieff
12/02/14 10:46:15PM
865 posts

future feature request ninglike (but better) chat module


Ning To Jamroom

You do know cometchat can be themed like FB or Gtalk? and you can disable those additional plugins.
updated by @garymoncrieff: 12/29/14 09:23:54AM
gary.moncrieff
@garymoncrieff
12/02/14 10:17:18PM
865 posts

Skin Settings Error


Design and Skin Customization

Thank you that was the issue added allowed_html to editor and not_empty to text fields and that fixed it.
gary.moncrieff
@garymoncrieff
12/02/14 10:05:41PM
865 posts

Skin Settings Error


Design and Skin Customization

Hey Guys,

I added this to my sites config file,

    // Index Welcome Message
    $_tmp = array(
        'name'     => 'welcome_message',
        'type'     => 'editor',
        'default'  => '',
        'validate' => '',
        'label'    => 'Welcome Message',
        'help'     => 'Enter your welcome message here',
        'section'  => 'Visitor Homepage',
        'order'    => 40
    );
    jrCore_register_setting('gmPlugu',$_tmp);

    // Block 1 heading
    $_tmp = array(
        'name'     => 'block1_heading',
        'type'     => 'text',
        'default'  => '',
        'validate' => '',
        'label'    => 'Block 1 Heading',
        'help'     => 'Enter the heading for block 1 here',
        'section'  => 'Visitor Homepage',
        'order'    => 41
    );
    jrCore_register_setting('gmPlugu',$_tmp);

    // Block 1 content
    $_tmp = array(
        'name'     => 'block1_content',
        'type'     => 'editor',
        'default'  => '',
        'validate' => '',
        'label'    => 'Block 1 Content',
        'help'     => 'Enter the content for block 1 here',
        'section'  => 'Visitor Homepage',
        'order'    => 42
    );
    jrCore_register_setting('gmPlugu',$_tmp);

    // Block 2 Heading
    $_tmp = array(
        'name'     => 'block2_heading',
        'type'     => 'text',
        'default'  => '',
        'validate' => '',
        'label'    => 'Block 2 Heading',
        'help'     => 'Enter the heading for block 2 here',
        'section'  => 'Visitor Homepage',
        'order'    => 43
    );
    jrCore_register_setting('gmPlugu',$_tmp);

    // Block 2 content
    $_tmp = array(
        'name'     => 'block2_content',
        'type'     => 'editor',
        'default'  => '',
        'validate' => '',
        'label'    => 'Block 2 Content',
        'help'     => 'Enter the content for block 2 here',
        'section'  => 'Visitor Homepage',
        'order'    => 44
    );
    jrCore_register_setting('gmPlugu',$_tmp);

    // Block 3 Heading
    $_tmp = array(
        'name'     => 'block3_heading',
        'type'     => 'text',
        'default'  => '',
        'validate' => '',
        'label'    => 'Block 3 Heading',
        'help'     => 'Enter the heading for block 3 here',
        'section'  => 'Visitor Homepage',
        'order'    => 45
    );
    jrCore_register_setting('gmPlugu',$_tmp);

    // Block 3 content
    $_tmp = array(
        'name'     => 'block3_content',
        'type'     => 'editor',
        'default'  => '',
        'validate' => '',
        'label'    => 'Block 3 Content',
        'help'     => 'Enter the content for block 3 here',
        'section'  => 'Visitor Homepage',
        'order'    => 46
    );
    jrCore_register_setting('gmPlugu',$_tmp);

    // Block 4 Heading
    $_tmp = array(
        'name'     => 'block4_heading',
        'type'     => 'text',
        'default'  => '',
        'validate' => '',
        'label'    => 'Block 4 Heading',
        'help'     => 'Enter the heading for block 4 here',
        'section'  => 'Visitor Homepage',
        'order'    => 47
    );
    jrCore_register_setting('gmPlugu',$_tmp);

    // Block 4 content
    $_tmp = array(
        'name'     => 'block4_content',
        'type'     => 'editor',
        'default'  => '',
        'validate' => '',
        'label'    => 'Block 4 Content',
        'help'     => 'Enter the content for block 4 here',
        'section'  => 'Visitor Homepage',
        'order'    => 48
    );
    jrCore_register_setting('gmPlugu',$_tmp);

and run the integrity checks, but when I update the setting sin skin settings I get

invalid jrCore_checktype:

I can update settings in all other sections of the skin settings fine, so it must be something with this code but I cant see anything obvious.
updated by @garymoncrieff: 01/03/15 12:37:01PM
gary.moncrieff
@garymoncrieff
12/02/14 09:08:11PM
865 posts

domain mapped to profile?


Ning To Jamroom

Quote: maybe you should in the future consider a jrlite and jrpro
the lite version has a basicly out of the boix functioning site with the sitebuilder and simple admin interface then the jr pro gives u everything and anything

But that's what the bundles are designed to achieve, and coming from other systems where you're forced to pay a big upfront fee for a bunch of modules you only end up replacing because some of them are never good enough, I sure appreciate Jamroom's approach.
updated by @garymoncrieff: 12/29/14 09:23:54AM
gary.moncrieff
@garymoncrieff
12/02/14 09:02:30PM
865 posts

After editing page, redirects to index page


Using Jamroom

I would like to extend my thanks to you and the team on this, far too many web developers take the lazy route and not fully support IE even despite it commanding a larger market share than any other browser.
updated by @garymoncrieff: 12/22/16 11:55:59AM
gary.moncrieff
@garymoncrieff
12/02/14 12:19:21PM
865 posts

Widget Builder Help


Using Jamroom

yeah if that could be done it would be nice.
updated by @garymoncrieff: 12/22/16 11:55:59AM
gary.moncrieff
@garymoncrieff
12/02/14 12:18:41PM
865 posts

After editing page, redirects to index page


Using Jamroom

Fixed good job Michael.
updated by @garymoncrieff: 12/22/16 11:55:59AM
  67