Forum Activity for @michael

michael
@michael
08/11/17 05:23:01AM
7,832 posts

Help: Jamroom installation not responding to clicks


Installation and Configuration

cloudflair.

Its often the cause of issue. What it does is caches your site, but jamroom already has a cache, so it ends up just screwing up the javascript system.

Turn off cloudflare and try again
michael
@michael
08/10/17 09:58:11PM
7,832 posts

Custom Search Button


Design and Skin Customization

Docs: "Search"
https://www.jamroom.net/the-jamroom-network/documentation/modules/950/search#jrsearch-form

Use the template="" instead.

So
{jrSearch_form template="my_search_template.tpl"}

Then in your skin, add the template file. ( call it whatever you like )
/skins/( YOUR SKIN )/my_search_template.tpl

copy the default template from modules/jrSearch/templates/html_search_form.tpl which looks like this:
{* Standard HTML search form *}

{jrCore_lang module="jrSearch" id="7" default="Search" assign="st"}

{assign var="form_name" value="jrSearch"}
<div style="white-space:nowrap">
    <form action="{$jamroom_url}/search/results/{$jrSearch.module}/{$jrSearch.page}/{$jrSearch.pagebreak}" method="{$jrSearch.method}" style="margin-bottom:0">
    <input id="search_input" type="text" name="search_string" style="{$jrSearch.style}" class="{$jrSearch.class}" placeholder="{$jrSearch.value|jrCore_entity_string}">&nbsp;<input type="submit" class="form_button" value="{$st}">
    </form>
</div>
into your my_search_template.tpl file, then you can adjust things directly.
michael
@michael
08/10/17 09:23:59PM
7,832 posts

Ninja Skin: Video template misconfigures in Site Builder


Ning To Jamroom

This is fixed in jrNinja ver 2.0.6. For your site, update your code in the LATEST VIDEO content to this
{if isset($item.seamless_module_name) && $item.seamless_module_name == 'jrVideo'}
see screenshots
step1.jpg step1.jpg - 317KB
michael
@michael
08/10/17 08:18:36PM
7,832 posts

Custom Search Button


Design and Skin Customization

too vague.

It will be in the same template you modified the search bar in.
michael
@michael
08/10/17 06:11:18PM
7,832 posts

audio_mood


Installation and Configuration

You can add Additional Search Fields at:
ACP -> MODULES -> LISTING -> GLOBAL CONFIG -> ADDITIONAL SEARCH FIELDS

add audio_mood there.

Docs: "Search"
https://www.jamroom.net/the-jamroom-network/documentation/modules/950/search
search_field.jpg search_field.jpg - 324KB
michael
@michael
08/10/17 06:07:11PM
7,832 posts

search by genre and/or mood


Design and Skin Customization

Sure you can do that.

You'll need to setup a structure that submits the settings available, so you'll need a list of all possible moods and all possible genres in 2 dropdown lists inside a form. When the form is submitted put the values into the URL so it comes out like
site.com/genre=rock/mood=mellow

Then in your jrCore_list call, check for each of those:
{if isset($_post.mood) && isset($_post.genre)}
   {jrCore_list module="jrAudio" search1="audio_mood = `$_post.mood`" search2="audio_genre = `$_post.genre`"}
{/if}

Docs: "jrCore_list"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/89/jrcore-list
michael
@michael
08/10/17 05:59:57PM
7,832 posts

Get url to play all songs from an artist


Installation and Configuration

could probably do it with a module. Not sure how you'd know that the song finished playing though since the browser player is independent of any of your programming.
michael
@michael
08/09/17 09:44:23PM
7,832 posts

Widgets on SB Index page falling outside page layout


Using Jamroom

you see that on all browsers, are you logged in or logged out? is it the same if you log-in/log-out?

Try clearing your browser. on Firefox: HISTORY -> CLEAR RECENT HISTORY
michael
@michael
08/09/17 09:09:50PM
7,832 posts

A few questions re: the "follow me" skin


Design and Skin Customization

Once you've cloned the skins its all yours and you can hack it up any way you like.

Another good thing to know about is how to take control of a modules template by copying its file to your skin and renaming it:

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

The javascript is going to be whatever the skin designer decided was needed. For the most part, because things are expected to be customized, onclick="????" is used to be able to see that something is supposed to happen when that item is clicked on.

This helps track back to the js being called. I have trouble locating whats going on when its all abstracted out and $().on('click'....)'d . If you want to know anything and cant figure it out, ask in the forums and one of the skin developers will answer.
  199