Forum Activity for @garymoncrieff

gary.moncrieff
@garymoncrieff
04/20/15 04:36:08AM
865 posts

latest Update to jrEmbed broke


General

{"notices":[{"type":"cri","text":"Query Error: Table 'gary_jamroom.jr_ujgooglemaps_item_key' doesn't exist"}]}

{"notices":[{"type":"cri","text":"Query Error: Table 'gary_jamroom.jr_ujipsumjam_item_key' doesn't exist"}]}
gary.moncrieff
@garymoncrieff
04/20/15 03:40:43AM
865 posts

latest Update to jrEmbed broke


General

Hey Steve

Latest update to jrEmbed has affected your plugins, so far seen issues with google maps and lipsum.
gary.moncrieff
@garymoncrieff
04/20/15 03:15:15AM
865 posts

Cometchat


Using Jamroom

Hey All

For those of you who have this running correctly could you please post instructions on how to fix it? My support license with Cometchat has expired and I am not at the stage of wanting to renew it as when I launch I will increase the package. But for now I would just like to get it working, however when you follow the instructions provided, no users ever show as online.
updated by @garymoncrieff: 06/08/15 03:20:47PM
gary.moncrieff
@garymoncrieff
04/19/15 01:15:30AM
865 posts

User ID Question For Cometchat


Design and Skin Customization

I have used the api in the past to launch the chatroom window, but not this, you shouldn't rename jqcc.cometchat as far as I recall.

Are you sure your integration is actually working? anytime I tried a few months ago I could never get it to work, it would install, but there was never any indication that your followers were online.

<a href="javascript:void(0)" onclick="javascript:jqcc.cometchat.chatWith('{$_profile_id}');">Chat with me<a>

updated by @garymoncrieff: 04/19/15 01:16:40AM
gary.moncrieff
@garymoncrieff
04/18/15 02:22:53AM
865 posts

Releasing marketplace modules from a mapped domain


Jamroom Developers

Go to your name in the menu above, click Your Licenses and you can manage them there
gary.moncrieff
@garymoncrieff
04/16/15 09:41:14AM
865 posts

Tag Cloud - Module specific


Design and Skin Customization

Yes it is but it's very much skin specific as to how you go about this. I have done it with MediaPro as Douglas had set up search areas in the templates, but bear in mind this also means that the module search doesn't work. Better to start a new thread and get a more polished opinion on how to do this other than mine.
gary.moncrieff
@garymoncrieff
04/16/15 03:19:35AM
865 posts

RSS feed question for specific feed options


Design and Skin Customization

michael:
A feature is coming to add a file via the ACP so you can skip the FTP step, but isn't in the system yet.

It might be a wise idea to prefix template names added this way with the skin name, ensuring they never overwrite a profile with the same name etc. Whether or not that is feasible is another idea, its just the first thought that came into my head after reading about that feature. Of course the admin can delete the prefix if they wanted.

Sorry for the off topic post.
updated by @garymoncrieff: 04/16/15 03:21:25AM
gary.moncrieff
@garymoncrieff
04/16/15 12:02:36AM
865 posts

RSS feed question for specific feed options


Design and Skin Customization

I haven't a lot of time this morning but

1. I don't believe this is possible without using some sort of parser in the middle.
2. You will need to define a new template to use in the feed call, something like this might work

{if isset($jrFeed.feed)}
    <div class="title"><h2>{$jrFeed.feed.title}</h2></div>
    <div class="block_content">
        <div class="item" style="height:462px;overflow:auto;">
            {if isset($jrFeed.feed.item)}
                {foreach from=$jrFeed.feed.item item="item"}
                    <div class="normal">
                        <a href="{$item.link}">{$item.title}</a><br>
                        {$item.pubDate|jrCore_date_format}<br>
                    </div>
                    <hr>
                {/foreach}
            {/if}
        </div>
    </div>
{/if}

Then you'd call it using something like

{jrFeed_list name="Rest Ministries Devotionals" limit="5" template="new_template.tpl"}

3.
{jrFeed_list name="Rest Ministries Devotionals" limit="3"}
gary.moncrieff
@garymoncrieff
04/15/15 10:47:25AM
865 posts

Three quick questions about Groups


Ning To Jamroom

A better solution for no 2 if you want complete control would be add it as a Skin setting.

You add new settings in the skins config.php file, I'll assume you're using Ningja. So something like

    // Hide Group Comment Wall
    $_tmp = array(
        'name'     => 'hide_group_comment_wall',
        'default'  => '',
        'type'     => 'text',
        'validate' => 'not_empty',
        'label'    => 'Hide Comment Wall',
        'help'     => "Enter the group ids of the comment walls you wish to hide, separate using commas",
        'section'  => 'groups',
        'order'    => 54
    );
    jrCore_register_setting('jrNingja', $_tmp);

to be added before the return true; line

In order for new settings to show in the skin, you must run an integrity check.

I would need someone from the team to show what exact code to wrap the comments box in code however. Remember if you go this route make sure your using a clone of the skin otherwise skin updates will overwrite this change.
updated by @garymoncrieff: 04/15/15 10:48:33AM
  50