Forum Activity for @michael

michael
@michael
01/12/18 10:40:34AM
7,823 posts

Jamroom Radio


Using Jamroom

izhmel:
I ran into this problem ""An error was encountered loading the media URL"" because of a missing file @ http://dubmusic.com/dubmaster/dubmusicradio , is there away to ""auto skip missing file"" in JR media player ??

Thanks

You'll need to re-upload that file. The only way to know if a file is corrupt is to play it after you upload it. If it doesn't play then it didn't get uploaded correctly.

If you have this issue a lot, suggest moving to Jamroom Hosting.
https://www.jamroom.net/hosting
michael
@michael
01/12/18 10:35:50AM
7,823 posts

site news


Using Jamroom

click on it, you will be take to the location where it exists. Either Edit it to change it to what you want or delete it and reset the caches.
michael
@michael
01/12/18 01:22:19AM
7,823 posts

Share buttons on audio with SHARETHIS


Design and Skin Customization

Jamroom provides MANY ways to do things and MANY override opportunities, you need to select any one of these and you can take control.

First thing to do is to locate a point which allows you to take control. There may be overrides already existing, so test with "WHERE DOES THIS COME OUT" so you know that where you are editing is actually showing.

I added this for you to your site and provided a link in the ticket already, so just go to that location and edit the marker text that is already there.

Same docs apply:

Docs: "Altering a Modules Template"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1051/altering-a-modules-template


Docs: "Using the Template Editor"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/3183/using-the-template-editor
michael
@michael
01/12/18 01:12:44AM
7,823 posts

Jamroom Radio


Using Jamroom

If you want to sponsor a module, read this:

Docs: "Sponsor a Module"
https://www.jamroom.net/the-jamroom-network/documentation/jamroomnet/4931/sponsor-a-module

Then outline how you expect it would work as a project scope and submit it here:
https://www.jamroom.net/form/project_overview

We'll get you a rough quote on how long, how much and if you want to go ahead we'll build it. You then test it and when its finished it will be released to the community for everyone.
michael
@michael
01/10/18 05:14:57PM
7,823 posts

Editor formatting stripped in blog for everyone but Admin


Using Jamroom

can you send us your login details for both admin and a user who gets their formatting stripped to support at jamroom dot net.

When did it start happening?
michael
@michael
01/09/18 03:51:59PM
7,823 posts

How to set limits on line length when formatted text is entered into profile form?


Using Jamroom

You might try the 'paste_as_text' option for TinyMCE.
https://www.tinymce.com/docs/plugins/paste/#paste_as_text

Add:
paste_as_text: true,
into the form_editor.tpl file.

There are 2 one is for TinyMCE in Site Builder the other is in Core.
michael
@michael
01/09/18 03:43:29PM
7,823 posts

Block comments


Using Jamroom

Right.

You'd add a form field maybe 'profile_nocomment' to the Profile (site.com/profile/settings) form using the Form Designer

Docs: "Using the Form Designer"
https://www.jamroom.net/the-jamroom-network/documentation/getting-started/1275/using-the-form-designer

Then get your users to input comma separated values of the profiles they dont want to comment.

so $profile_nocomment would print out as '1,24,27,451,256', something like that depending on what they entered.

Then the code would be
{$blocked =  explode(',',$profile_nocomment)}
{if is_array($blocked) && !in_array($_user._user_id, $blocked)} 
// show the comment form
{/if}
michael
@michael
01/09/18 01:25:07AM
7,823 posts

Simple Chat Acting Strange After Recent Updates?


Using Jamroom

We can reproduce it. Its related to the privacy system, investigating it.
michael
@michael
01/08/18 06:05:46PM
7,823 posts

Block comments


Using Jamroom

currently no. Mary can not choose to block just Jack from posting comments on her profile page.

It would need a custom module to be built. Or it MIGHT be possible with a custom Form Field via the Form Designer added to profiles then some adjustments to the skins templates. Like if Mary entered a comma separated list of users to block, then the comment form on the profile checked for that before displaying the input box.... might work.
michael
@michael
01/08/18 01:28:50PM
7,823 posts

Simple Chat Acting Strange After Recent Updates?


Using Jamroom

Can reproduce under these circumstances:
* an admin user creates a private room and invites @one into it
* the admin user uploads an image to the private room.
* admin can see the image they just uploaded, but @one cant.

The reverse is not true. If @one uploads an image to that private chat room, both admin and @one can view it.
  158