Forum Activity for @ultrajam

SteveX
@ultrajam
03/01/15 06:18:51AM
2,589 posts

How To Delete Account Type in "Sign Up" form Designer


Ning To Jamroom

You could set require_image="profile_image" in your jrCore_list calls.
SteveX
@ultrajam
03/01/15 06:15:07AM
2,589 posts

Emails for forum updates


Using Jamroom

Check that the email address you have entered for jamroom.net is the one you are expecting to receive things on. Also check your spam rules and filters.

Try another email address and see if you receive them there.
SteveX
@ultrajam
03/01/15 06:12:10AM
2,589 posts

Emails for forum updates


Using Jamroom

I just received an email to say you replied.

Do you receive other emails from jamroom.net?
SteveX
@ultrajam
03/01/15 05:42:57AM
2,589 posts

Success/Notice css


Jamroom Developers

No, but I do have something bleeding through from a module somewhere - I tried on another system and it looks fine.

Sorry for the false alert!
SteveX
@ultrajam
03/01/15 05:40:56AM
2,589 posts

Emails for forum updates


Using Jamroom

I've just turned on topic notification for this thread, so post a response and I'll see if I get a notification.
SteveX
@ultrajam
03/01/15 04:39:33AM
2,589 posts

Emails for forum updates


Using Jamroom

You will receive notification when someone creates a new forum topic.

Click the topic notification button (to the right of the topic title) to get notified of replies.
SteveX
@ultrajam
02/28/15 10:50:41AM
2,589 posts

Will a ujGooglemaps map appear in a SiteBuilder panel?


GoogleMaps

You should be using profile_googlemaps_lng and profile_googlemaps_lat, or change the values in your array. Without mappable data no map will show.

If you put the ujGoogleMaps_map function into the div class="col10 last" and pass in the $item do you see a map for each item?
Do you see Lat:{$item.profile_googlemaps_lat} Lng:{$item.profile_googlemaps_lng} ?
Temporarily try something like this and let me know what you see:
{if isset($_items)}

{ujGoogleMaps_map name="multimap" map=$_items module="jrProfile" height="500" width="100%" map_type="hybrid"} 

    {foreach from=$_items item="item"}
    <div class="item">

        <div class="container">
            <div class="row">
                <div class="col12 last">
                    <div class="p10">
                        <h3><a href="{$jamroom_url}/{$item.profile_url}">{$item.profile_name}</h3><br>
                        {ujGoogleMaps_map name="singlemap" map=$item module="jrProfile" height="300" width="100%" map_type="hybrid"}
                        <h5>Lat:{$item.profile_googlemaps_lat} Lng:{$item.profile_googlemaps_lng}</h5>
                    </div>
                </div>
            </div>
        </div>

    </div>
    {/foreach}
  
{/if}
Do you have a link to this page?
updated by @ultrajam: 02/28/15 10:56:44AM
SteveX
@ultrajam
02/27/15 04:26:12AM
2,589 posts

Will a ujGooglemaps map appear in a SiteBuilder panel?


GoogleMaps

Maps work very well on profiles. Try making a simple map on a profile before making a multi map.

If you dont see the map and you are sure that the mappable data is correct, verify that the smarty function is in the right template (add some text before the smarty function and check that it appears in the page where you expect it to). Also look at the page source and see what map javascript is added to the page. Paste it here if you can.

It doesn't matter if some profiles have map data and others don't.
updated by @ultrajam: 02/27/15 04:28:27AM
  111