Forum Activity for @michael

michael
@michael
10/03/14 01:13:29AM
7,832 posts

How to Create a Genre block


Design and Skin Customization

you'll want to use jrCore_list and the group_by parameter.

"{jrCore_list}"
http://www.jamroom.net/the-jamroom-network/documentation/development/89/jrcore-list#group-by

Group by the audio_genre so that only 1 of each genre comes out.

Then in your template make a foreach loop and point the link to where you want to point it.

At a guess:
{jrCore_list module="jrAudio" group_by="audio_genre" template="audio_menu.tpl"}

Then in audio_menu.tpl
{if isset($_items) && is_array($_items)}
 {foreach $_items as $item}
  {* the link goes here *}
  <a href="{$jamroom_url}/wherever/{$item.audio_genre}"
 {/foreach}
{/if}
michael
@michael
10/02/14 11:44:55PM
7,832 posts

Bug for non english album URL incomplete.


Jamroom Developers

Yeah that is a bug. I'll check it out.
michael
@michael
10/02/14 09:36:45PM
7,832 posts

Old Jamroom 4 license


Using Jamroom

Should be good to go now.

Log in as the admin user, then go here:
http://infinetserv-music-room.com/marketplace/browse

You have the super pack license, so you can install any of the modules from that pack that you want. You don't have to install them all. Each license is valid for use on up to 2 domains so you can use them wherever you like.

To install a module click on the INSTALL button next to it.

eg: on that url ( http://infinetserv-music-room.com/marketplace/browse ) the top module is the "Video Support" module which reads:
Quote:
you have a license
Free
INSTALL

Click it to install it, then click the checkbox and save to activate it.

Once its activated, go to the QUOTA CONFIG tab to choose which of the quotas are allowed to use it on their profile.

Repeat for whichever modules you want to give your users.

If you get stuck, ask here.
michael
@michael
10/02/14 08:23:44PM
7,832 posts

Old Jamroom 4 license


Using Jamroom

Whoah, no passwords in the forums please!!

I'll get on this now.
michael
@michael
10/02/14 07:51:37PM
7,832 posts

Bug for non english album URL incomplete.


Jamroom Developers

Thats not a bug, thats raw-url-encoded.

Thai characters are not valid in a url so they need to be converted into valid characters.

If your browser supports it it will then be transformed into the visually correct url:
screenshot_url-encodeing.png screenshot_url-encodeing.png - 132KB

updated by @michael: 10/02/14 07:52:34PM
michael
@michael
10/01/14 09:47:00PM
7,832 posts

Looking for a Jamroom expert to set up a new site


Jamroom Developers

Looks like you figure out how:
https://www.jamroom.net/tulsabobt/job

I can see your job is added:

"Customize Jamroom site for fundraising through music sales"
https://www.jamroom.net/tulsabobt/job/14/customize-jamroom-site-for-fundraising-through-music-sales
michael
@michael
10/01/14 09:44:04PM
7,832 posts

How To Play a list of songs the user has LIKEd?


Design and Skin Customization

gary.moncrieff:
Not to butt in, but I think he wants it to be dynamic so having a static call to a specific ID won't help him in this instance I believe.

The search parameter would need to equal the profile id currently being viewed by the user. And since a user can have multiple profiles, will searching against the user id account for this?

Sorry if I am completely wrong here.

Its not butting in if your trying to help. Its appreciated.

$_user is the user looking at the screen and its available pretty much everywhere. use {debug} to check though.

"{degbug}"
http://www.jamroom.net/the-jamroom-network/documentation/development/1477/debug


So where the # is you could use $_user._user_id for the current user looking at the screen.
michael
@michael
09/30/14 07:47:12PM
7,832 posts

Default Image Change For Avatar & Thumbnails


Design and Skin Customization

The default image is in the "Image Support" module in the ACP.

The url for the IMAGES tab is:
YOUR-SITE.com/image/admin/images

Upload the one you want there to over-ride it.
michael
@michael
09/30/14 01:00:47AM
7,832 posts

Invalid Skin License - please refresh the System Updates tab and try again


Jamroom Developers

Delete it and click install from the marketplace again. Thats probably the easiest way.
michael
@michael
09/28/14 11:53:57PM
7,832 posts

jrFeatured module?


Suggestions

Its really cool, and well documented. What it is is a module to help you build modules.

You give it the name you want to use and it sets up the rest.

What you end up with is something similar to a blank module. Think the blog module where the only field is a title.

From there you use the Form Designer to add in the fields you need, so perhaps an image field, if its advertising that your selling. A couple of date fields that only the admin can see. And your a long way to building a way to sell advertising space.

You can then download the module and add any specialized code you need to make it complete.

use a {jrCore_list} call wherever you need it to display the adverts.
  657