Forum Activity for @nate

nate
@nate
01/21/20 07:47:07AM
917 posts

Audio Pro - Embed Audio Playlist to External Site


Using Jamroom

Make sure the js is there. You'll want to make a special header and footer with very little html. You need the js. perhaps

<head>
  -- include meta template
</head>
<body>
  --player here
</body>

updated by @nate: 01/21/20 07:48:20AM
nate
@nate
01/21/20 07:40:40AM
917 posts

Simple Custom Forms Question


Using Jamroom

Yes, if you do that, you could wrap it with your own quota check.
nate
@nate
01/19/20 12:52:51PM
917 posts

Audio Pro - Embed Audio Playlist to External Site


Using Jamroom

Yeah the way you've written that it's going to create a player for every item. Instead of a jrCore list try this

{jrCore_media_player
        type="jrAudio_player_dark"
        module="jrAudio"
        field="audio_file"
        search1="_profile_id = 166116"
        order_by="audio_file_track numerical_asc"
        limit="50" 
        autoplay=false}
nate
@nate
01/16/20 06:43:23AM
917 posts

customising iskin


Design and Skin Customization

You'll want to make sure you check the index templates to support the additional module fields, if any. You may need to look at the include.php as well.


Good luck.
nate
@nate
01/16/20 06:37:37AM
917 posts

Simple Custom Forms Question


Using Jamroom

I'm not seeing anything that would do this. It would need to be something custom.
nate
@nate
01/15/20 06:29:10AM
917 posts

Log in to Stream


Using Jamroom

Quote: ACP=>Core=>System Core=>Global Config=>Content tab

Yes that would be for internal players.
nate
@nate
01/13/20 06:39:26AM
917 posts

Log in to Stream


Using Jamroom

You could wrap your player like this.

{if jrUser_is_logged_in()}
//player here
{else}
You must be logged in to stream.
{/if}
nate
@nate
01/03/20 10:01:18AM
917 posts

How do I display the txn_total on a profile account


Jamroom Developers

Have you tried?

{jrCore_get_count module="jrPayment" name="txn_total" item_id=$_item_id }

Or maybe. profile_id=$_profile_id
nate
@nate
01/03/20 09:47:36AM
917 posts

Adding more social network options?


Jamroom Developers

Instagram was added with Google removed. Some skins have been released.

https://test.theflirtapp.com/
nate
@nate
01/03/20 08:00:25AM
917 posts

Enable Templates For login and signup


Using Jamroom

This is how it was done on the Follow Me skin.

 {if jrCore_module_is_active('jrOneAll') && isset($_conf.jrOneAll_domain) && strlen($_conf.jrOneAll_domain) > 2 }
<script src="{$_conf.jrOneAll_domain}/socialize/library.js?v=1.8.4" type="text/javascript"></script>
 {/if}
{jrCore_array name='widget_data' key='type' value="login"}
{jrCore_array name='widget' key='widget_data' value=$widget_data}
{jrUser_widget_login_display($widget)}
  10