Forum Activity for @michael

michael
@michael
08/19/14 11:02:44PM
7,832 posts

Update Failure


Installation and Configuration

What are the errors you are seeing.

Sometimes it does take a long time. let it run.
michael
@michael
08/19/14 07:26:40PM
7,832 posts

Error creating new entry


Jamroom Developers

You're searching for "audio_album =" but there is no search album. should there be an album name there.

Your custom module xtSong probably has some coding error where the item_id is supposed to be passed in but isn't.
michael
@michael
08/19/14 07:19:14PM
7,832 posts

truncate with inserted image


Design and Skin Customization

If you want to force an image, then use the form designer (if there isnt a blog_image there already ) to add a blog_image.

Put that blog_image at the top, then the text.

Or you could use the read-more button instead of truncate.
{$row.blog_text|jrBlog_readmore
michael
@michael
08/19/14 07:08:53PM
7,832 posts

Eliminating the spacing between each ARTISTS image / details when adding more info like biography


Design and Skin Customization

boplive:...I already have the col6 divs to make it go half way across the page which is set in another template....

but you're wrapping the whole thing in a .row .

so if you only have 1 row and it has more than 12 cols, then there's the issue.

A row has 12 cols. no more, no less.

if you have
.row
.col6
.col6
.col6
.row

then you have 6+6+6 = 18. 18 is not 12.

so make sure you have:
.row
.col6
.col6
.row
.col6
.col6
.row
.col6
.col6
.row
.col6
.col6


In your code above, it will only be good, if your {jrCore_list} is limited to 2 if each of the things inside is .col6

--edit--
Its also ok to have a row inside another row. but it still must have 12 cols.

Like this:
<div class="row">
    <div class="col8">
        <div class="row">
            <div class="col4"></div>
            <div class="col4"></div>
            <div class="col4"></div>
        </div>
    </div>
    <div class="col4"></div>
</div>
so that is a col of 8|4 then inside the col of 8 there is 4|4|4

Thats fine.

--edit edit--
or even a couple of rows stacked inside the 8 col.
<div class="row">
    <div class="col8">
        <div class="row">
            <div class="col4"></div>
            <div class="col4"></div>
            <div class="col4"></div>
        </div>
        <div class="row">
            <div class="col6"></div>
            <div class="col6"></div>
        </div>        
    </div>
    <div class="col4"></div>
</div>
thats ok too.
updated by @michael: 08/19/14 07:13:42PM
michael
@michael
08/19/14 07:02:49PM
7,832 posts

Making Guestbook Visible to All Visitors


Using Jamroom

MySong:...if you guys have a plan on releasing some kind of 'profile comments section' ...

just put the comments form into the profile .tpl file. perhaps the profile_header.tpl file.

"jrComments"
https://www.jamroom.net/the-jamroom-network/documentation/modules/275/jrcomment
michael
@michael
08/19/14 04:13:17AM
7,832 posts

Simple Modal CSS


Using Jamroom

SteveX:
Its the modal container you need to change the zindex on
.simplemodal-container {
    z-index: 10000 !important;
}
.simplemodal-overlay {
    z-index: 9999 !important;
}
put that code in any skin .css file.
michael
@michael
08/18/14 08:02:25PM
7,832 posts

Album page title says home in Nova skin


Design and Skin Customization

Yeah, your right. It needs to be fixed up.

Let you know when its sorted.
michael
@michael
08/18/14 06:09:07PM
7,832 posts

ProJam and Embed Audio


Using Jamroom

you could blacklist the jrEmbed module for that section.

|jrCore_format_string:$item.profile_quota_id:null:"jrEmbed"

"{jrCore_format_string}"
http://www.jamroom.net/the-jamroom-network/documentation/development/1437/jrcore-format-string

So this maybe:
{$item.blog_text|truncate:100:"...":false|jrCore_format_string:$item.profile_quota_id:false:"jrEmbed"|nl2br}
  669