Forum Activity for @michael

michael
@michael
03/20/17 04:15:58PM
7,827 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,827 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,827 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,827 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,827 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?
michael
@michael
03/20/17 12:50:53PM
7,827 posts

Subscriptions


Design and Skin Customization

all styles are contained in your skins CSS files so you can add styles to:
/skins/YOUR SKIN/css/(here are all the style)

Your question is very broad, so heres a link that covers skin design

Docs: Skin Design Guide
https://www.jamroom.net/the-jamroom-network/documentation/skin-design-guide
michael
@michael
03/20/17 12:47:03PM
7,827 posts

Page Module Current ID


Jamroom Developers

MySite/ProfileA/page/2/home

the 2 corresponds to the _item_id in the jrPage modules datastore. It is unique site wide. The 'home' part of the URL is cosmetic and not used other than for a human user to visualize the url and SEO reasons.

MySite/ProfileA/page/2/home
MySite/ProfileA/page/2/three-birds-in-a-tree
MySite/ProfileA/page/2/wednesdays-i-like-to-bake

Are all exactly the same URL.

--
Not really understanding Question #2. You can use the ID from the URL to retrieve the item from the datastore if its not already there for you in the location you're programming at.

$_item = jrCore_db_get_item('jrPage', 2);

Will get you an array of the data that is attached to item 2 from the jrPage datastore. with that comes all the profile information where that item is stored on.
michael
@michael
03/19/17 08:33:11PM
7,827 posts

How To? - Fill Site Builder Widget with background image


Design and Skin Customization

You have two pieces of CSS code there, the first one does nothing because its not targeting anything, translated to english it reads "make the margin zero and have no padding".

Which would be fine, if you actually supplied a target.

--
The second one has a target, it targets 'html' which is the wrapper for the entire page including the head and the body, everything.

The code you are then offering is "give it a background image found at images/yourimage.jpg, center it in the page and dont repeat it."

so as long as that image is actually there, I would expect that it may appear. Any more specific CSS than yours will over-ride it. Thats what CSS is Cascading Style Sheets.

Works like this: if you have ten layers all nested, and in css you say, paint the bottom layer green. Then you say, paint the second bottom layer red the person viewing those layers will see red. Unless the second bottom layer is smaller than the bottom layer.

If you want to target a specific widget, you need a better targeter than 'html'.

Widgets will have a targeter on them something like id="jrWidget_item_id_4" for each individual widget. you can target that with CSS like this
#jrWidget_item_id_4 {
         background: url('images/yourimage.jpg') no-repeat center center fixed; 
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
}

Then the code you're passing in is JUST targeting THAT widget. so you need to use firebug or similar to view the id= on the widget your interested in.
michael
@michael
03/18/17 11:35:57PM
7,827 posts

Can members reopen an account after the email address is identified as invalid by Kickbox?


Using Jamroom

"Kickbox fails" is a quota you have chosen and named. There is nothing special about it. It is a quota like any others that will have whatever quota settings you have set for it.

If you want to change it back to a more regular quota, you can as the admin user. Its not recommended to let users change their own quota, but it is possible. (remember how difficult it was getting your head around quotas? willing to offer that responsibility to your users who havent read the docs??? suggest no.)

If you want to allow them to select their own quota:

"Allow Quota Changes"
http://yoursite.com/profile/admin/global/section=signup+settings/hl=change
  247