Forum Activity for @ultrajam

SteveX
@ultrajam
08/20/14 03:37:16PM
2,587 posts

Mobile Audio Not Playing in Android


Using Jamroom

Dazed:
Lol Steve. I get amazed for how long I have been working in IT how many people despise IE. Then I work with a bunch of others who love IE and hate Chrome or Firefox.

Ballmer just left Microsoft with 15 Billion in shares. I imagine he loves IE. I hope that your "bunch of others" have done equally as well.
SteveX
@ultrajam
08/20/14 03:08:36PM
2,587 posts

Mobile Audio Not Playing in Android


Using Jamroom

I'm going to have to buy an android device.

Since I gave up worrying about internet explorer I've been "kind of" missing these mysteries.
SteveX
@ultrajam
08/20/14 03:00:49PM
2,587 posts

Making Guestbook Visible to All Visitors


Using Jamroom

You're making it very complicated for yourself, you don't need to put it into jrGuestbook.

Just put it into a template, maybe add a tab to the profile menu if needed, and it will work.
SteveX
@ultrajam
08/19/14 03:21:53PM
2,587 posts

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


Design and Skin Customization

I think what you are describing is a grid, where the heights of each box are not equal which is causing you a layout problem? If you posted a link with your question it would be much easier for you to describe, and easier for everyone else.

3 possible solutions:

Pinterest will be using something like Masonry to create it's grid - a javascript plugin to lay things out with no gaps. There are others but this is the best one I know of: http://masonry.desandro.com/

If you need to keep things in rows you could also look at some jquery to give you equal height boxes within each row (the empty space is within the box rather than below it). Again, there are many, I use this one: https://github.com/filamentgroup/jQuery-Equal-Heights

You could also use css to fill vertically by columns rather than rows. But I haven't tried that, and you should check browser support for it. https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Using_multi-column_layouts
updated by @ultrajam: 08/19/14 03:22:54PM
SteveX
@ultrajam
08/18/14 01:57:21AM
2,587 posts

New Artist


Using Jamroom

Try putting {debug} into your template to see which variables hold the user and/or profile created time.
SteveX
@ultrajam
08/17/14 04:32:03PM
2,587 posts

ulgooglemaps on profile


Design and Skin Customization

Yes please!

Heres the direct link to the ujGooglemaps forum:
https://www.jamroom.net/ultrajam/forum/googlemaps

blindmime:
Incidentally, in Chrome on a Mac when entering the address in the form, clicking on it in the dropdown doesn't register. I have to type in the entire address, selecting it from the dropdown doesn't do anything.

Thanks, I'll check this out.
SteveX
@ultrajam
08/17/14 04:28:56PM
2,587 posts

An old demo site says its up to date


Jamroom Developers

Ok, thanks Brian, I'll check those credentials.
SteveX
@ultrajam
08/17/14 04:18:47AM
2,587 posts

An old demo site says its up to date


Jamroom Developers

I have a demo site running 5.1.37 and Marketplace 1.1.0

When running the marketplace system update, I get:
All modules and skins are up to date

I'm going to update manually, just checking that you were aware of this.
updated by @ultrajam: 09/20/14 10:33:10AM
SteveX
@ultrajam
08/17/14 03:33:43AM
2,587 posts

ulgooglemaps on profile


Design and Skin Customization

The code you have there definitely works, although you would most likely want to remove skin=true for the profile (it still works with skin=true on the profile but you won't see the marker).

http://jam.ultrajam.net/maps-demo

Things to check:

1. That you have the map in a position where it will definitely show up, not within a smarty statement, etc. Try putting a heading or some text in right before your googlemaps function and check that it shows up on the profile. If it does not, you have either put it in the wrong place, or you are seeing a cached version of your profile.

2. That you have saved a profile_googlemaps location address for that profile. No map will show if you have not saved a location.
Put {debug} into the template and refresh the page. In the debug popup window scroll down to near the bottom and check that you have something like this in the output:


{$profile_googlemaps} "Havana, Cuba"

{$profile_googlemaps_administrative_area_level_1} "Havana"

{$profile_googlemaps_bounds_ne} "(23.1812734, -82.09113109999998)"

{$profile_googlemaps_bounds_sw} "(22.9200574, -82.5748054)"

{$profile_googlemaps_country} "CUBA"

{$profile_googlemaps_lat} "23.0540698"

{$profile_googlemaps_lng} "-82.345189"

{$profile_googlemaps_locality} "Havana"

{$profile_googlemaps_location_type} "APPROXIMATE"

{$profile_googlemaps_map_type} "ROADMAP"


updated by @ultrajam: 08/17/14 03:38:54AM
SteveX
@ultrajam
08/16/14 09:31:13AM
2,587 posts

Simple Modal CSS


Using Jamroom

Its the modal container you need to change the zindex on
.simplemodal-container {
    z-index: 10000 !important;
}
.simplemodal-overlay {
    z-index: 9999 !important;
}
  143