Forum Activity for @michael

michael
@michael
10/08/14 06:37:27PM
7,832 posts

JrEmbed and Events


Using Jamroom

Good point @boplive. Gary, can you check to see if the same thing happens when its on one of the default skins. Elastic perhaps.

Another thing to check is that the "Convert Embed Tags" are allowed for Dazzy's quota. Thats what it looks like. I'll check here to see if i can reproduce it.
michael
@michael
10/07/14 08:46:10PM
7,832 posts

any chance of adding an "add to favorites" features


Suggestions

Check out pauls post here:
https://www.jamroom.net/the-jamroom-network/forum/design-and-skin-customization/14455/how-to-play-a-list-of-songs-the-user-has-liked#p14536

And the one underneath it by brian. It shows how to make a list playlist out of things that you've liked.

Is that what your looking for.
michael
@michael
10/07/14 08:36:36PM
7,832 posts

Profiles


Design and Skin Customization

or profile_cover_image_size.

Throw a {debug} in there to see what variables you have available if you get stuck.

"{debug}"
http://www.jamroom.net/the-jamroom-network/documentation/development/1477/debug
michael
@michael
10/07/14 07:57:43PM
7,832 posts

JrEmbed and Events


Using Jamroom

Just embeded a poll into an event. It worked as expected.

Make sure the profile that created the event has the "Convert Embed Tags" checked under Active Text Formatters at:
YOUR-SITE.COM/core/admin/quota
michael
@michael
10/06/14 12:14:48AM
7,832 posts

Profiles


Design and Skin Customization

#1: sure. its in the skins
/skin/(your skin name)/profile_header.tpl

#2: 'best' is difficult because I haven't tried multiple things and found one I prefer. There are many places you could start though. Perhaps take a look at the jrAdminSkin module. The way it works is to catch via a hook what the current section and current skin is, then set it to a different area depending on what the admin chooses.

So the admin area could be jrElastic, the front end jrSage and the profiles jrProjam. You could do the same thing depending on quota. That would be one way.

Another way would be at the template level
{if $_profile.quota_id == '3'}
//something
{elseif $_profile.quota_id == '4'}
//something else
{else}
//another thing
{/if}

There are probably other ways too.
michael
@michael
10/05/14 05:41:16PM
7,832 posts

Using Custom Players


Design and Skin Customization

Good to hear Ken. Hopefully he gets it done easily so you can get the player you want.

Get him to contact me at support [at ] jamroom.net if he wants a developers account to put it in the marketplace so it can be installed via the ACP.
michael
@michael
10/05/14 04:22:47PM
7,832 posts

Uploding files on IOS


Jamroom Developers

I don't have an iOS. When I try to upload a new audio file from the create or update screen on Firefox, I get the option for all file types, not just audio.

It must be a limitation of the iOS browser.
michael
@michael
10/05/14 02:08:25AM
7,832 posts

" " in user names


Jamroom Developers

I'm trying to sort that out now. Hold on, it will be in a future release.
michael
@michael
10/05/14 12:02:07AM
7,832 posts

" " in user names


Jamroom Developers

Actually, I can see what your saying. If the username contains " then things get screwed up.

If the username is:
дуэт - "гамма"

Then those " screw up the html for the links because they are not escaped.
<div class="action_item_media" onclick="jrCore_window_location('http://site.com/дуэт---"гамма"/gallery/30/new-gallery')">

I think the proper course of action is to not allow " as a character in a username. Or maybe to strip out " from the url.
  655