Forum Activity for @douglas

douglas
@douglas
09/18/15 09:17:43AM
2,812 posts

Private Notes and Notifications?


Using Jamroom

Actually, it should be this:

{if isset($_items)}
    {foreach from=$_items key="module" item="entry"}
        {if $entry.active == '1'}
            <a href="{$entry.target}"><div class="profile_menu_entry profile_menu_entry_active">{$entry.label}</div></a>
        {else}
            <a href="{$entry.target}"><div class="profile_menu_entry">{$entry.label}</div></a>
        {/if}
    {/foreach}
{/if}
{if jrProfile_is_profile_owner($_profile_id)}
    <a href="{$jamroom_url}/{jrCore_module_url module="jrPrivateNote"}/notes"><div class="profile_menu_entry">Alerts {$_user.user_jrPrivateNote_unread_count}</div></a>
{/if}

just tested this and it works for me.
douglas
@douglas
09/18/15 09:08:49AM
2,812 posts

Private Notes and Notifications?


Using Jamroom

If your using the jrNingja skin, open your skins/jrNingja/profile_menu.tpl and change this:

{if isset($_items)}
    {foreach from=$_items key="module" item="entry"}
        {if $entry.active == '1'}
            <a href="{$entry.target}"><div class="profile_menu_entry profile_menu_entry_active">{$entry.label}</div></a>
        {else}
            <a href="{$entry.target}"><div class="profile_menu_entry">{$entry.label}</div></a>
        {/if}
    {/foreach}
{/if}

to this:

{if isset($_items)}
    {foreach from=$_items key="module" item="entry"}
        {if $entry.active == '1'}
            <a href="{$entry.target}"><div class="profile_menu_entry profile_menu_entry_active">{$entry.label}</div></a>
        {else}
            <a href="{$entry.target}"><div class="profile_menu_entry">{$entry.label}</div></a>
        {/if}
    {/foreach}
{/if}
{if jrProfile_is_profile_owner($_profile_id)}
    <a href="{$jamroom_url}/{jrCore_module_url module="jrPrivateNote"}/notes"><div class="profile_menu_entry">Alerts {jrPrivateNote_unread_count()}</div></a>
{/if}

that will add an "Alerts" button at the end of your profiles menu.
updated by @douglas: 09/18/15 09:12:32AM
douglas
@douglas
09/18/15 05:48:33AM
2,812 posts

form designer file download


Using Jamroom

What form did you add the file upload too?
douglas
@douglas
09/09/15 10:58:16AM
2,812 posts

Using Jamroom search - what do these search rules mean?


Using Jamroom

The % is the % key on your keyboard.

The key:value refers to the database key, ie. profile_name, profile_active, audio_title etc.

These will not work in your site search form, at least I've not been able to get them to work. They are more for your ACP datastore browser search fields.

You can also use the % in search parameters in your jrCore_list functions.

Hope this helps!
douglas
@douglas
09/08/15 01:29:42PM
2,812 posts

Subscribe to a Forum?


Ning To Jamroom

You can follow certain forum topics by clicking the topic notification button at the top right of the topic, as far as I know, there isn't a way to subscribe to a forum.
douglas
@douglas
09/08/15 01:27:56PM
2,812 posts

Audio Compilation Albums


Using Jamroom

You could create a bundle of all the songs you want on the album, then create a playlist with the same songs and list both on a page, just a suggestion. ;)
douglas
@douglas
09/08/15 01:25:40PM
2,812 posts

Where do I edit the text of this notification?


Using Jamroom

Sounds like your getting the hang of this to me. ;)
douglas
@douglas
09/08/15 05:42:11AM
2,812 posts

Audio Compilation Albums


Using Jamroom

You can use group_by="audio_album" in your jrCore_list function to list by album. If that is what your looking for?
  136