开发者 |
apos37
michaelbourne |
---|---|
更新时间 | 2025年6月3日 05:02 |
PHP版本: | 8.0 及以上 |
WordPress版本: | 6.8 |
版权: | GPLv3 or later |
版权网址: | 版权信息 |
gravity-forms-zoom-registration-sample-form.json
file as a starter form. All required and optional registration fields are included.At this time, compatibility with Zoom Events or Zoom Sessions has not been confirmed. As this is a free plugin with no revenue model, investing in an additional Zoom plan solely for testing isn’t feasible at the moment.
Yes, you can use a single Gravity Form to handle registrations for multiple Zoom webinars by creating a separate feed for each webinar. Each feed can be triggered conditionally based on a form field value. There are two common ways to manage this: • Dropdown Field: Add a visible dropdown field to the form listing available webinars. Each feed is configured to run only when a specific option is selected. • Hidden Field: Use a hidden field (e.g., webinar_id) that is dynamically populated—such as via a URL parameter or post meta—based on the page the form is displayed on. Each feed uses this value to determine which webinar to register for. This allows you to reuse the same form without needing to create a new one for each webinar.
There could be several reasons. You can check for an error in the entry details notes, which should give you a good indication of what happened. Some common reasons include: • You didn't actually set up the plugin or a webinar/meeting feed • The Account ID, Client ID, and/or Client Secret are incorrect • Incorrect scopes set • A field is required on your Zoom registration form but not mapped on the plugin feed • The webinar or meeting with the ID you entered does not exist • The feed is set to a webinar when it should be a meeting or vice versa • The webinar/meeting host can not register • User's email cannot register for the same webinar/meeting more than 3 times in 24 hours
A Join Link field has been added to the Zoom Webinar feed registation fields section. If you want the join link to populate into a hidden field on the entry, then just choose the field you want from your form.
You can map custom questions to your Zoom registration by using a simple code snippet in your website’s theme. This allows you to include additional fields beyond the default ones. To do this, you’ll need to add a small piece of code to your theme’s functions.php
file. In the example below, we’re adding a custom question called “Referral Source.” The name in the code must exactly match the field name used in your Zoom registration. Once this is added, the “Referral Source” field will be included in your Gravity Forms Zoom Webinar feed settings. Here’s the code you need to add:
add_filter( 'gravityzwr_registration_fields', function( $fields ) { $fields[ 'referral_source' ] = [ 'type' => 'string', 'name' => 'Referral Source', 'required' => false, ]; return $fields; } );
We recommend using our website support forum as the primary method for requesting features and getting help. You can also reach out via our Discord support server or the WordPress.org support forum, but please note that WordPress.org doesn’t always notify us of new posts, so it’s not ideal for time-sensitive issues.
gravityzwr_registration_fields
hook (feature request by lsterling03)