Forum Activity for @michael

michael
@michael
03/20/17 06:50:31PM
7,832 posts

Image crop=portrait


Using Jamroom

but if you could you'd be happy?

I'll get a ticket opened on it.
michael
@michael
03/20/17 06:49:26PM
7,832 posts

Blog into widget?


Using Jamroom

Well done :)
michael
@michael
03/20/17 06:48:35PM
7,832 posts

google maps api key in time map


Genosis

hmmmm. no ACP and a module that you haven't bought throwing errors. mysterious.

Can you try going to this url please:
YOUR-SITE.com/core/admin/global

That should be the base location for the ACP. type in to the search box there "map" and see what comes back.

Thanks.
michael
@michael
03/20/17 04:50:07PM
7,832 posts

upload size for images


Genosis

not a problem. If you need to ask these questions, we know we still have work to do on docs. :) ask away.


If you like videos here:
Video Learning: "The admin handbook: Learning Quotas"
https://www.jamroom.net/video-training/81/admin-handbook-learning-quotas

If you prefer docs here:

Docs: "Understanding Profile Quotas"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/2985/understanding-profile-quotas


Docs: "HowTo: Increase Php's upload limit"
https://www.jamroom.net/the-jamroom-network/documentation/howto/748/howto-increasing-phps-upload-limit

If the changes are not taking effect, try restarting apache.
michael
@michael
03/20/17 04:43:41PM
7,832 posts

Image crop=portrait


Using Jamroom

jrImage_create_image() is the function that takes that crop argument.

--

filter=?????

arguments can also be used.

--


Answer: Yes 'portrait' is an image value. and you're right, it takes the top portion:
     case 'portrait':
                // With a portrait crop, we expect the images to be of people,
                // with their head in the upper 3rd of the picture
                if ($src_width > $src_height) {
                    $diff         = ($src_width - $src_height);
                    $src_x_offset = round($diff / 2);
                    $src_width    = $src_height;
                }
                else {
                    $diff         = ($src_height - $src_width);
                    $src_y_offset = round($diff / 4);
                    $src_height   = $src_width;
                }
                $_post['height'] = $_post['width'];
                $new_height      = $new_width;
                break;
michael
@michael
03/20/17 04:15:58PM
7,832 posts

Image crop=portrait


Using Jamroom

bugger, thought I had it with that answer. ;)

if the ratio is something like 1:16 it should be using the center of the width I would expect, because the overflow would be in that direction.

You're needing an off-set. hmmm. need to go look. back soon.
michael
@michael
03/20/17 04:12:35PM
7,832 posts

Blog into widget?


Using Jamroom

try not to get frustrated. :)

If you can write the steps you are taking that brought you to "...feels like I have tried everything and I can manage to get my first blog to be visible but not the last...."

Then we can understand where you are at.

You're wanting a blog in a widget.
* add a widget to the page
* make it an "Item List" widget of the "blog" type.
* If you only want it for one particular profile_id, then add in the search section _profile_id = (your profile id)

That should be it.

"...to get my first blog to be visible but not the last...."
What results are you getting?
michael
@michael
03/20/17 03:51:59PM
7,832 posts

Image crop=portrait


Using Jamroom

Not sure of the term is there or not, but the ratio will work.
crop=16:9
crop=4:3 (the best ratio for laptops that is no longer availalbe :( )
crop=16:10 (the next best thing to a 4:3 laptop monitor)
crop=1:1 (same as square)

whatever you like. :)
michael
@michael
03/20/17 03:49:04PM
7,832 posts

google maps api key in time map


Genosis

looks like you've installed this module:
https://www.jamroom.net/ultrajam/networkmarket/ss=maps

The producer of that module is @ultrajam

Their forum is here:
https://www.jamroom.net/ultrajam/forum

Their docs Table of Contents is here:
https://www.jamroom.net/ultrajam/documentation/contents

Looks like the doc you want is related to putting in your API key to the module.


Probably this doc at a guess:

Ultrajam Docs: "Google Maps API Usage and Limits"
https://www.jamroom.net/ultrajam/documentation/modules/1788/google-maps-api-usage-and-limits

Usually keys go in the ACP -> MODULES -> (whatever category that module is in) -> GoogleMaps -> GLOBAL CONFIG
michael
@michael
03/20/17 03:44:51PM
7,832 posts

Member signups


Design and Skin Customization

you want to build a signup page around the form to signup to a specific quota, like "Artists signup page" "Members signup page".

Or you want to redirect to a specific url per quota after the signup form has been completed?
  247