Forum Activity for @paul

paul
@paul
11/26/15 02:37:39AM
4,335 posts

Create a module using Aparna


Jamroom Developers

dim:
@paul,
I found the module. I think it's not a very good solution, unfortunately.

OK - Try this then - Create the Gift module with Aparna and add a field with the recipient's name, then then create a page that shows gifts received by the logged in user with somthing like this in the template -

{jrCore_list module="xxGift" search="gift_recipient = `$_user.profile_name`}

(set parameters to suit your module names)
paul
@paul
11/25/15 01:28:00PM
4,335 posts

Invitation Module (Beta)


Announcements

I put the new Invitation module in the beta release channel yesterday.
I'm making a few changes to it that alters the way it works so have temporarily removed it.
Will post here again when its back there.
Thanks

updated by @paul: 02/24/16 05:33:43PM
paul
@paul
11/25/15 05:03:18AM
4,335 posts

Invitations error


Using Jamroom

Fixed in the next release.
Thanks
paul
@paul
11/25/15 04:50:35AM
4,335 posts

Invitations error


Using Jamroom

I'm seeing instances of that in my logs as well. Will check it out.
Thanks
paul
@paul
11/25/15 04:02:38AM
4,335 posts

Create a module using Aparna


Jamroom Developers

If your beta channel is activated it should be there (I see on my sites).
Do a search for 'Invitations'.
paul
@paul
11/25/15 01:51:02AM
4,335 posts

Create a module using Aparna


Jamroom Developers

dim:
@paul,
Is there a similar module in the Marketplace? I could alter it for my purposes. Or maybe are you planning to create a similar module?

Suggestion - Use Aparna to create your xxGift module, then the Form Designer to add the 'gift image' field to the create and update forms.
Then install the new Invite module (currently free in the beta channel) to 'send' the gift to its recipient(s).
paul
@paul
11/23/15 03:48:56PM
4,335 posts

Adding Members To Groups Administratively?


Using Jamroom

Have you actaully sent the invite. Its a sort of two part process. You create an invitation then send it to selected followers.
Invitees can select in their notifications whether they receive any invites by email or private note.
paul
@paul
11/23/15 01:58:12PM
4,335 posts

Adding Members To Groups Administratively?


Using Jamroom

OK - Have added the Invitations module to the Marketplace Beta Channel so you should be able to get it from there.
Install it and see what you think. It should be a good solution to what you want to do as I, like Michael, get really annoyed when I find myself added to groups and events etc. that I didn't want to be added to (listening Facebook? ;-) ). Much better to be invited and have the choice imo.

Tip - As this module sends emails to users and you are not live yet, be sure to set your Active Email System to 'Debug Log' -
ACP=>Communications=>Email Support=>Active Email System
That way, emails will be dumped to the debug log and not be actually sent to users. You can then view the debug log in the normal way to see the emails.
paul
@paul
11/23/15 02:56:42AM
4,335 posts

Who Is Online


Design and Skin Customization

Try this -
{capture name="online_tpl" assign="online_tpl"}
{literal}
{if isset($master)}
    {foreach from=$master item="member"}
        <a href="{$jamroom_url}/{$member.profile_url}" title="{$member.user_name}" alt="{$member.user_name}">{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$member.session_user_id size="xsmall" crop="auto" class="iloutline" alt=$member.session_user_name title=$member.session_user_name}</a><br><br>
    {/foreach}
{/if}
{if isset($admin)}
    {foreach from=$admin item="member"}
        <a href="{$jamroom_url}/{$member.profile_url}" title="{$member.user_name}" alt="{$member.user_name}">{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$member.session_user_id size="xsmall" crop="auto" class="iloutline" alt=$member.session_user_name title=$member.session_user_name}</a><br><br>
    {/foreach}
{/if}
{if isset($user)}
    {foreach from=$user item="member"}
        <a href="{$jamroom_url}/{$member.profile_url}" title="{$member.user_name}" alt="{$member.user_name}">{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$member.session_user_id size="xsmall" crop="auto" class="iloutline" alt=$member.session_user_name title=$member.session_user_name}</a><br><br>
    {/foreach}
{/if}
{if isset($visitor)}
    {$vcnt = 0}
    {foreach from=$visitor item="member"}
        {$vcnt = $vcnt + 1}
    {/foreach}
{/if}
<br>
Visitors: {$vcnt|default:0}
{/literal}
{/capture}

{jrUser_whos_online template=$online_tpl}

hth
updated by @paul: 11/23/15 02:57:54AM
paul
@paul
11/23/15 12:10:15AM
4,335 posts

Create a module using Aparna


Jamroom Developers

dim:
I tried to create a new module by the Aparna, but the Profile may be able to add items yourself in it.

This is one of the basic principles of Jamroom. When a profile creates something, they 'own' it, so its not really possible for a user to create something that belongs to another user.
What you would need to do is create a 'gift' module with Aparna then add a custom field (use the Form Designer maybe) so that the recipient of the gift can be named. You would then need to add a tool so that recipients could be notified and view their gifts.

Some coding would be required!!
  249