Forum Activity for @douglas

douglas
@douglas
10/31/18 05:48:12AM
2,797 posts

Unknown Upload (Audio+Video) Error


Installation and Configuration

Check your activity and error logs, there should be something about the failed upload.

Hope this helps!
douglas
@douglas
10/27/18 06:55:33AM
2,797 posts

Playlist


Using Jamroom

izhmel:
I want the player to play all songs and as new songs get added they get added to the player

You'll have to do something custom for this, I'd suggest using the Template Code widget and the jrCore_media_player function...
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/788/jrcore-media-player

Hope this helps!
douglas
@douglas
10/27/18 06:51:29AM
2,797 posts

my blog pic and profile pic not seeking


Using Jamroom

Sorry, not sure what your referring to here... do you have a link to the page, can you elaborate on the issue?

Thanks!
douglas
@douglas
10/26/18 07:15:00AM
2,797 posts

login or create an account to purchase


Using Jamroom

paul:
If non logged in users click on the Checkout button they will be taken to the login page (with signup link). When that is done they are taken back to the item page.
Are you not seeing this happen?


Paul is correct, this is how it is suppose to work. If you aren't seeing this, then you might try reloading the payment module, Marketplace > Tools > Reload Modules Or Skins, then run the Integrity Check tool and Reset Caches.

Hope this helps!
douglas
@douglas
10/26/18 06:31:56AM
2,797 posts

Upload Music ID - jrFanClub


Design and Skin Customization

Hello,

There isn't an "Upload Music" language string, you can add it to the en-US.php file in the skins/jrFanClub/lang directory if you like.

At the bottom of the file right after this:
$lang[176] = "Images";

add this:
$lang[177] = "Upload Music";

Then your language function would be:

{jrCore_lang skin="jrFanClub" id="177" default="Upload Music"}

You'll want to run the Integrity Check tool and Reset Caches so the new language string gets added to the skin.

Hope this helps!
updated by @douglas: 10/26/18 06:32:43AM
douglas
@douglas
10/26/18 06:27:48AM
2,797 posts

Home and Timeline both end with /action


Installation and Configuration

Sorry for the late reply.

This has been fixed and is in the Marketplace.

Hope this helps!
douglas
@douglas
10/26/18 04:53:13AM
2,797 posts

how to show a new created form desinger field at Bio for some quotas


Installation and Configuration

That is correct if the name of your field is profile_kind the you use {$profile_kind} in the template you want it to show in... to show it to certain quotas, you can use an if statement, something like this...

Show it to the quota_id 1 quota...
{if $profile_quota_id == '1'}
    {$profile_kind}
{/if}

Show it to quota_id 1 and 2 quotas
{if $profile_quota_id == '1' ||  $profile_quota_id == '2'}
    {$profile_kind}
{/if}

Hope this helps!
douglas
@douglas
10/26/18 04:43:01AM
2,797 posts

login or create an account to purchase


Using Jamroom

I'm seeing something odd here too and will get a ticket open for it thanks.
  34