solved Site Builder - Widgets: Profile Gallery by Quota

Asil
Asil
@asil
9 years ago
41 posts
I'd like to have a widget on the main page that shows the profile images for profiles belonging to a certain quota, in this case the "New Signup Quota". Using the construction kit tool, its not apparent to me how to craft the request so it pulls users from just that quota.

Here's what I built:

{jrConstructionKit_rotator module="jrProfile" limit="50" search1="New Signup Quota" }

It returns nothing! *laughs*

How would you write the code?

Thanks!
updated by @asil: 12/22/16 11:55:59AM
michael
@michael
9 years ago
7,714 posts
try:
{jrConstructionKit_rotator module="jrProfile" limit="50" search1="profile_quota_id = 1" }

Use 1 or whatever the correct ID is of quota your after. You could use the name if you got it exactly right, but the quota id is safer.

To use the name it would be something like:
{jrConstructionKit_rotator module="jrProfile" limit="50" search1="profile_name = New Signup Quota" }
Asil
Asil
@asil
9 years ago
41 posts
@michael. The code worked like a charm. *smiles* Thanks, Michael!