Forum Activity for @douglas

douglas
@douglas
09/25/15 08:57:50AM
2,807 posts

allowing script tags


Using Jamroom

I think the next release will allow you to set a quota to allow all HTML tags. That should allow you to use the script tag. And your right... It is being removed for a reason. ;)
douglas
@douglas
09/23/15 10:09:57AM
2,807 posts

Profile settings quota selection


Installation and Configuration

Make sure you don't have your ACP > Profiles > User Profiles > Global Config > Allow Quota Changes checked.
douglas
@douglas
09/23/15 08:27:41AM
2,807 posts

System Check Error


Installation and Configuration

Those are binary files and you'll want to contact your hosting provider to make sure you can run binary files on your server.
douglas
@douglas
09/18/15 10:42:30AM
2,807 posts

Private Notes and Notifications?


Using Jamroom

Do you have any unread private notes?
douglas
@douglas
09/18/15 09:17:43AM
2,807 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,807 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,807 posts

form designer file download


Using Jamroom

What form did you add the file upload too?
  135