Capture Brizy form submissions in Google Sheets
Connect LeadToSheet to your Brizy-powered WordPress site and stream every form submission - including popup and multi-step form data - straight to a Google Sheet.
CMS: WordPress
Overview
Brizy is a visual page builder for WordPress with a built-in form element that supports popup forms, multi-step layouts, and integrations with email marketing platforms like Mailchimp and SendinBlue. LeadToSheet listens for the form submit event on the frontend and writes the complete payload to Google Sheets, giving you a lead database that works alongside your existing Brizy email marketing integrations.
Implementation checklist
- 1
Add the LeadToSheet SDK to your WordPress site
Inject the script tag into your theme footer or use a header/footer plugin. Brizy renders form elements dynamically on the frontend, so the SDK must be present on the page to observe form injections.
LeadToSheet snippet
<script>(function(w,d,s,u,k,e){if(w.__formsync){return}w.__formsync={q:[],k:k,endpoint:e};var js=d.createElement(s);js.src=u;js.async=1;js.onload=function(){w.__formsync.init&&w.__formsync.init({ clientKey:k })};d.head.appendChild(js);})(window,document,'script','https://www.leadtosheet.com/sdk.min.js','YOUR_CLIENT_KEY','https://www.leadtosheet.com/api/ingest');</script> - 2
Set field labels in the Brizy form element
Open the Brizy editor, select your form element, and give each field a clear label. Brizy uses these labels to generate the field names in the submission payload, which LeadToSheet maps to Google Sheets column headers.
Tip: Brizy labels double as placeholder text by default. Use concise labels like 'Full Name' or 'Work Email' for clean sheet headers.
- 3
Test popup and inline forms from the published page
Exit the Brizy editor, navigate to the live frontend URL, and submit test entries from both inline page forms and popup forms. Brizy's editor preview does not fire real submission events.
Customization ideas
Capture popup form conversions with page-level attribution
Brizy popup forms inject into the DOM when triggered by scroll, click, or timer events. LeadToSheet records the triggering page URL and UTM parameters so you know which page and campaign drove the popup conversion.
Run LeadToSheet alongside Brizy's email marketing integrations
If your Brizy form already sends data to Mailchimp, ActiveCampaign, or SendinBlue, LeadToSheet adds a parallel Google Sheets record. You get both a marketing platform sync and a spreadsheet log without any conflicts.
Route multi-step form data to a dedicated sheet
For Brizy multi-step forms, the SDK automatically identifies each form via fingerprinting. Create a separate form connection in your LeadToSheet dashboard to direct submissions to a specific Google Sheet, keeping lengthy multi-step data separate from simpler contact forms.
Troubleshooting
Brizy popup form submissions not reaching the sheet
Brizy injects popup DOM elements dynamically. The LeadToSheet SDK uses a MutationObserver to detect new forms, but if the SDK loads after Brizy's popup library, the observer may register too late. Ensure the LeadToSheet script appears before Brizy's frontend scripts in your page source.
Brizy editor preview does not generate real submissions
The Brizy visual editor renders an interactive preview for design purposes, but form submissions inside the editor are sandboxed. Always test on the published or previewed frontend URL to validate data reaches Google Sheets.
Email marketing integration fires but sheet row is missing
Brizy processes email marketing integrations server-side after the form submission. If the browser-level event was blocked (by a script error or ad blocker), LeadToSheet may not capture it. Check the browser console for JavaScript errors and ensure no extensions are blocking the SDK.
Frequently asked questions
- Does LeadToSheet work with both Brizy free and Brizy Pro?
- Yes. The form element is available in both versions, and LeadToSheet captures submissions identically from free and Pro Brizy installations.
- Can I capture forms from Brizy's cloud-hosted version as well?
- This guide covers the Brizy WordPress plugin. For the cloud-hosted Brizy, you would need to inject the SDK via Brizy's custom code settings if available, or use a webhook fallback from the LeadToSheet dashboard.
- Will Brizy's form success message and redirect still work?
- Yes. LeadToSheet captures the submission event before Brizy processes its success action. Your redirect, success message, or popup close behaviour continues as configured.
