Forum Activity for @douglas

douglas
@douglas
08/14/17 08:06:36AM
2,808 posts

Use of blockquote tag in tinyMCE under Follow Me skin


Design and Skin Customization

Make sure you've allowed the HTML tag in the Allowed HTML Tags field for the quotas you want to give permission to.

ACP > Core >System Core > Quota Config

/core/admin/quota

Hope this helps!
updated by @douglas: 08/14/17 08:06:50AM
douglas
@douglas
08/12/17 07:34:53AM
2,808 posts

Remove "ABOUT" title?


Ning To Jamroom

Just tested this on my dev site, and you don't have to enter a title for the widget at all.

Hope this helps!
douglas
@douglas
08/12/17 07:32:21AM
2,808 posts

Remove "ABOUT" title?


Ning To Jamroom

You can just add a space to the widget title if you don't want a title at all.

Hope this helps!
douglas
@douglas
08/08/17 09:35:26AM
2,808 posts

Help needed for sign up questions


Using Jamroom

perrie:
Paul,
I'm not seeing that. Please look at screenshot

That is the Core Quota Config, you need the Users Quota Config
ACP=>Users=>Users=>Quota Config

Hope this helps!
douglas
@douglas
08/08/17 05:34:03AM
2,808 posts

Help needed for sign up questions


Using Jamroom

perrie:
Hi Strumelia,
Well, I think we just found the problem. I don;'t have both options. In fact is says that I don't have the user sign up set up, which of course I know I did. I've attached what my page looks like. Hummm.. I have had a pile of crazy glitches lately and I am not sure why...

Point your browser to your user/signup page, then click the Form Designer button, that should make both the signup and modify forms available.

Hope this helps!
douglas
@douglas
07/27/17 06:42:11AM
2,808 posts

Embed The Playlist Player In An External Site


Design and Skin Customization

Your correct, that isn't going to work but this should, just tested it.

test.tpl

{jrCore_list module="jrAudio" order_by="_item_id desc" limit="1" template="standalone_player.tpl" profile_id="24044"}

standalone_player.tpl

{if isset($_items)}
{foreach $_items as $item}
{jrCore_media_player module="jrAudio" field="audio_file" search1="_profile_id = `$_items.0._profile_id`" order_by="audio_file_track numerical_asc" limit="50" autoplay=false}
{/foreach}
{/if}

Hope this helps!
douglas
@douglas
07/26/17 08:23:26AM
2,808 posts

On Jamroom forums, only getting one page (of 10 threads) showing for a category


Using Jamroom

If it happens again, you might try just clearing your browser cache and see if that helps.
douglas
@douglas
07/26/17 07:34:04AM
2,808 posts

Embed The Playlist Player In An External Site


Design and Skin Customization

Try using jrPlaylist_player_dark for the type instead of jrAudio_player_dark.

Hope this helps!
douglas
@douglas
07/25/17 10:21:25AM
2,808 posts

Embed The Playlist Player In An External Site


Design and Skin Customization

Hello,

See if this works for you...

ltest.tpl

{jrCore_list module="jrAudio" order_by="_item_id desc" limit="10" template="standalone_player.tpl" profile_id="1"}

standalone_player.tpl

{if isset($_items)}
{foreach $_items as $item}
{jrCore_media_player type="jrAudio_player_dark" module="jrAudio" field="audio_file" item=$item}
{/foreach}
{/if}

Hope this helps!
douglas
@douglas
07/24/17 02:35:28PM
2,808 posts

Embed The Playlist Player In An External Site


Design and Skin Customization

Hello,

I think your jrCore_media_player function should look more like this...

{if isset($_items)}
{foreach $_items as $item}
{jrCore_media_player type="jrAudio_player_dark" module="jrAudio" field="audio_file" item=$item}
{foreach}
{/if}

Here are the Docs on the jrCore_media_player function.
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/788/jrcore-media-player

Hope this helps!
  57