Skip to content
BrightLeaf Digital
BrightLeaf Digital
  • Plugins
    • GravityOps Bundle
    • Integrate Asana with Gravity Forms
    • Mass Email Notifications for Gravity Forms
    • Recurring Form Submissions
    • Kanban View for Gravity View
    • Global Variables
    • Folders4Gravity (free!)
    • GravityOps Search (free!)
  • Snippets
  • Docs
  • Blog
  • Account
  • Contact
BrightLeaf Digital
  • Plugins
    • GravityOps Bundle
    • Integrate Asana with Gravity Forms
    • Mass Email Notifications for Gravity Forms
    • Recurring Form Submissions
    • Kanban View for Gravity View
    • Global Variables
    • Folders4Gravity (free!)
    • GravityOps Search (free!)
  • Snippets
  • Docs
  • Blog
  • Account
  • Contact

BL Digital Guidelines & Policies

2
  • Using the Plugin on a Client Site
  • BrightLeaf Digital Refund Policy

Integrate Asana with Gravity Forms

29
  • Getting Started
    • Integrate Asana with Gravity Forms — Welcome & Overview
    • Finding the Plugin in Your Dashboard
  • Setup
    • Connect Asana (OAuth)
    • Create Your First Feed (5-Minute Quickstart)
  • Settings Reference
    • Feed Settings — Name, Conditional Logic & Trigger
    • Asana Task Settings Reference
    • Feed Triggers
    • Mapping Custom Fields
    • Workflow Steps — Create Task
    • Workflow Steps — Update Task
  • How-to Guides
    • Use Conditional Logic to Route Tasks
    • Choosing the Right Feed Trigger
    • Attach File Uploads to Tasks
    • Use Asana Custom Fields as Automation Signals
    • Workflow Steps: Create Task
    • Workflow Steps: Update Task
  • Troubleshooting
    • Basics
    • Reconnecting / Resetting Credentials
    • Task Creation Failed → Backup Task Behavior
    • Items Not Showing in Drop-downs
    • Feed Page Unavailable
    • Task Description Caused Errors
    • Duplicate Tasks
  • Explanations & Concepts
    • OAuth and Scopes
    • Permissions & Workspaces
    • How Feeds Run
    • Performance Considerations
  • Changelog/Roadmap
    • Changelog
    • Roadmap

Mass Email Notifications for Gravity Forms

47
  • Getting Started
    • Mass Email Notifications — Welcome & Overview
    • Finding the Plugin in Your Dashboard
    • Before You Begin: Email Limits & SMTP
    • How Batches Are Created & Sent (5-Minute Delay)
    • Recommended Setup Pattern — Master Control Notification Form
  • Setup
    • Configure Global Send Limits (Throttling)
    • Create Your First Feed (5‑Minute Quickstart)
    • Using a GF Notification as Your Email Template
    • Schedule Batches for a Future Date
  • Settings Reference
    • Global Settings — Limits Reset Rules, Old Batch Cleanup, Cron Toggle & Next Run
    • Unsubscribe Settings (Free Version)
    • Unsubscribe & Preferences Settings (Premium Version)
    • Double Opt-In Settings (Premium Version)
    • Feed Settings — Name, Label, Dedupe, Completion Email
    • Choose Target Form & Email Field
    • Email Settings — From, Reply-To, Subject, Message, Merge Tags
    • Unsubscribe & Preferences Merge Tags Reference
    • Merge Tag Fallbacks & CSV Column Mapping
    • Schedule Based on Date Field
    • Conditional Logic — Feed Form vs. Target Form
    • CSV Ingestion
  • How‑to Guides
    • Send an Update to Everyone Who Used Another Form
    • Create a User Preferences Form (Premium)
    • Set Up a Double Opt-In Workflow (Premium)
    • Using Target-Form Merge Tags
    • Segment Recipients with Target-Form Conditional Logic
    • Import a CSV List and Personalize with Merge Tags
    • Build a Front-End “Trigger” Form for Non-Admin Staff
    • Use Populate Anything for Dynamic, Person-Specific Emails
  • Troubleshooting
    • Basics
    • Batches Not Sending / Cron Not Running
    • Preview Shows 0 Recipients with Target-Form Filters (Premium)
    • Troubleshooting Unsubscribe & Preferences Issues
    • Hitting Rate Limits
    • Emails Going to Spam
    • Entries/Batches Missing After Deletions
  • Explanations & Concepts
    • Understanding Double Opt-In
    • Understanding the Unsubscribe and Preferences System
    • How Batching & Cron Work
    • Throttling Models Explained
    • Deduplication Strategy
    • Batch Statuses & Actions
    • What Gets Logged
    • Limitations & Design Trade‑offs
    • Security & Permissions Considerations
  • Changelog / Roadmap
    • Changelog
    • Roadmap

GravityOps Search

5
  • The Display Attribute
  • Nesting Shortcodes
  • Using Search Operators
  • Multi-Input Field Support
  • General Notes

Kanban View for GravityView

7
  • Getting  Started
    • Kanban View for GravityView
    • How KV4GV Complements GravityView & Gravity Flow
  • Setup & Configuration
    • Quick Start & Setup
    • Board & Card Configuration
  • How‑to Guides / Use Cases
    • Build a Pipeline Board from a Status Field
  • Changelog & Roadmap
    • Changelog
    • Roadmap

Recurring Form Submissions for Gravity Forms

10
  • Getting Started
    • Welcome & Overview
    • Finding the Plugin in Your Dashboard
  • Setup
    • Creating Your First Recurring Feed (Quickstart)
  • Settings Reference
    • Plugin Settings Page
    • Feed Settings
    • Entry Page
    • Notifications, Alerts & Shortcodes
  • Explanations & Concepts
    • Lifecycle, Scheduling, Deletion & Edge Cases
  • Changelog/Roadmap
    • Roadmap
    • Changelog

Global Variables for Gravity Math

7
  • Getting Started
  • Creating and Using Variables
  • Nesting Variables
  • Using Variables in Conditional Logic
  • Developer Notes
  • Roadmap
  • Changelog
View Categories
  • Home
  • Docs
  • GravityOps Search
  • Multi-Input Field Support

Multi-Input Field Support

Multi-input fields—such as Name, Address, and Checkbox fields—contain multiple inputs within a single field.
GravityOps Search supports both displaying and searching these fields, but the behavior differs slightly between display and search.

Displaying Multi-Input Fields
#

When using the display attribute with the base field ID (e.g., {13}), the plugin automatically detects if the field is multi-input and will:

Fetch all of its sub-inputs (e.g., First Name, Last Name)
Concatenate them into a single string separated by spaces
This allows for simple display of complete names or addresses without needing to reference each sub-input.

To target a specific subfield (e.g., just First Name), use its input ID directly, like {13.3}.

Searching Multi-Input Fields #

The correct way to search multi-input fields depends on the field type:

Checkbox Fields

  •  Use the base field ID (e.g., search="2"), not the input ID (2.2)
  •  This is the recommended method and ensures stability, especially if checkbox inputs are modified or dynamically generated

Other Multi-Input Fields (e.g., Name, Address)

  •  Use the individual input IDs (e.g., 13.3, 13.6)
  •  Searching by the base field ID (e.g., 13) will not work for these fields

Examples #

Search by first and last name (multi-input Name field):

[gravops_search target="2" search="13.3,13.6" display="Full Name: {13}"]
John|Smith
[/gravops_search]

Search for a selected checkbox value:

[gravops_search target="5" search="2" display="{2}"] First Choice [/gravops_search]
Updated on September 18, 2025

What are your Feelings

  • Happy
  • Normal
  • Sad

Share This Article :

  • Facebook
  • X
  • LinkedIn
  • Pinterest
Using Search OperatorsGeneral Notes
Table of Contents
  • Displaying Multi-Input Fields
  • Searching Multi-Input Fields
  • Examples
  • GravityOps Plugin Family
  • Integrate Asana with Gravity Forms
  • Mass Email Notifications from Gravity Forms
  • Centralized Variables for Gravity Math
  • Recurring Form Submissions for Gravity Forms with GravityOps
  • Folders4Gravity (free!)
  • GravityOps Search (free!)

Get our offers, new snippets, and blog posts in your inbox!

This field is hidden when viewing the form
Name
This field is hidden when viewing the form
You've already subscribed with that email address!
  • Docs
  • Code Snippets
  • Blog
  • Affiliate
  • Customer Portal
  • Contact
© 2025 BrightLeaf Digital
  • Plugins
    • GravityOps Bundle
    • Integrate Asana with Gravity Forms
    • Mass Email Notifications for Gravity Forms
    • Recurring Form Submissions
    • Kanban View for Gravity View
    • Global Variables
    • Folders4Gravity (free!)
    • GravityOps Search (free!)
  • Snippets
  • Docs
  • Blog
  • Account
  • Contact