Forum Activity for @michael

michael
@michael
12/18/13 10:11:04PM
7,832 posts

click this button. Jamroom migration system.


Off Topic

cms2cms is a system to allow users to migrate from one cms to another.

Like:
joomla to wordpress
wordpress to drupal
drupal to joomla

I'd like to see Jamroom in that list too. Help the community out, click this button and vote for the feature:

http://cms2cms.betaeasy.com/thread/23447

No need to create an account or login, just go, click.
updated by @michael: 01/19/14 04:08:48PM
michael
@michael
12/18/13 05:49:00PM
7,832 posts

Dev Server


Jamroom Developers

I still use a local server, here's the guide for that:

"Setting up a debugging environment"
http://www.jamroom.net/the-jamroom-network/documentation/development/129/setting-up-a-debugging-environment
michael
@michael
12/18/13 02:51:15AM
7,832 posts

Data Browser Not Seatchable By Email


Suggestions

Added this into the tracker here:
https://www.jamroom.net/the-jamroom-network/tracker/248/search-by-user-email-address

-- edit --
fixed. should be included in an upcoming update.
updated by @michael: 12/18/13 03:04:40AM
michael
@michael
12/18/13 12:30:26AM
7,832 posts

Foxycart and Downloadable Audio


Design and Skin Customization

nice one. that looks right. find what you want and wrap it in a check for a variable.

Well done. :)
michael
@michael
12/18/13 12:28:48AM
7,832 posts

Changing Image Size in template


Design and Skin Customization

its on the server, part of php, you dont need to worry about it.

Just use:
{jrCore_module_function function="jrImage_display" module="jrAudio" type="audio_image" item_id=$item._item_id size="xlarge" crop="auto" alt=$item.audio_title title=$item.audio_title class="iloutline" width="512" height="512"}

updated by @michael: 12/18/13 12:29:06AM
michael
@michael
12/18/13 12:02:35AM
7,832 posts

Aparna with Nova Skin


Installation and Configuration

You'd want to check that $item contains an audio file item or a video item since its being played on the player.

Also check what the outputted HTML looks like. Does it have a song to play in that section of javascript that initiates the player when you look at the generated HTML code? If no, then thats the problem. The solution is to pass it a song, which is what you are doing in when you check that $item contains an audio file.

If there is no audio file information, you might need to move the {jrCore_media_player call into a template that has that information available.
michael
@michael
12/17/13 11:37:51PM
7,832 posts

Changing Image Size in template


Design and Skin Customization

The sizes are the ones that are created via the GD php image function, use those to get it as close as you can, then add the specific widths:

{ width="512" height="512"}

if you use size="small" then stretch it to 512 it will look grainy. and if you use size="xxxlarge" it will be slower to load because the image is so big. so get it close first, then add the sizes.

You can also use class="img_scale" and it will scale to the width of the containing div.
  753