Forum Activity for @michael

michael
@michael
01/12/18 10:45:35AM
7,826 posts

site builder


Using Jamroom

Yes this is true for many skins. You can put the links back if you want to use them.

Some newer skins have default menu items in place.
michael
@michael
01/12/18 10:44:17AM
7,826 posts

SEO Group


Suggestions

A separate forum category group here?
forum_category.jpg forum_category.jpg - 82KB
michael
@michael
01/12/18 10:41:53AM
7,826 posts

Jamroom Radio


Using Jamroom

izhmel:
I created a module and paste the code in "item_index.tpl"
How do I create a check box for the different JR functions , i.e. "search="profile_quota_id = 2"" with the module I created for the admin usage , so I can just check a box genre "dub" ???

http://dubmusic.com/dubmaster/dubmusicradio

Not understanding what you've done here. When you say you created a module, could you list the steps and locations you've edited so I can understand what you've done please.
michael
@michael
01/12/18 10:40:34AM
7,826 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,826 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,826 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,826 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,826 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,826 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,826 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}
  158