| name | wp-gravity-wiz |
| description | Use when working with Gravity Wiz products: installing or managing Spellbook (the Gravity Wiz platform), Gravity Perks (48+ form enhancement plugins like GP Populate Anything, Nested Forms, Limit Submissions), or any individual perk. Also use for Gravity Shop (WooCommerce integration). |
| license | GPL-2.0-or-later |
| optional | true |
Gravity Wiz — Spellbook, Perks & Extensions
Gravity Wiz makes the Gravity ecosystem: Spellbook (unified platform), Gravity Perks (48+ form enhancements), Gravity Connect (external service integrations), and Gravity Shop (WooCommerce). All products install and update through Spellbook.
When to use
- Installing or activating Spellbook and any Gravity Wiz product
- Working with Gravity Perks (GP Populate Anything, Nested Forms, Limit Submissions, etc.)
- Upgrading from legacy Gravity Perks individual installers to Spellbook
- Troubleshooting perk conflicts or perk-specific settings
- Setting up GP Populate Anything for AI-driven dynamic form population
- Managing licenses from account.gravitywiz.com
Official documentation
GitHub
| Repo | Purpose |
|---|
gravitywiz/snippet-library | 1000+ hooks and filters — excellent for AI training context |
Procedure
1) Install Spellbook (the platform — install first)
All Gravity Wiz products install through Spellbook:
- Download from: https://gravitywiz.com/download/spellbook
(or from account: https://account.gravitywiz.com/downloads)
- Install:
wp plugin install path/to/spellbook.zip --activate
- Activate your license in wp-admin: Spellbook → Account
- Spellbook auto-deactivates legacy Gravity Perks if it was installed.
2) Install individual products/perks
From wp-admin: Spellbook → Perks (or Connect or Shop):
- Browse or search products
- Click Activate — Spellbook handles download and activation automatically
For CLI/automated installs after Spellbook is active:
wp plugin list | grep gp-
3) Key Perks for AI workflows
4) GP Populate Anything + AI feeds
Combine with Gravity Connect for dynamic AI-driven form population:
add_filter('gppa_query_args', function($args, $field, $form) {
if ($field->id === 5) {
$args['meta_query'][] = [
'key' => 'ai_category',
'value' => 'featured',
];
}
return $args;
}, 10, 3);
5) Reduce memory footprint for LLM loops
Spellbook uses code deduplication across all perks, reducing PHP memory usage compared to individual perk installs. This matters during memory-intensive LLM/API execution loops triggered via Gravity Connect.
wp plugin status spellbook
wp plugin status gravityperks
6) Hide perks from Plugins page (optional)
add_filter('gp_hide_perks_from_plugins_page', '__return_true');
References