FormVue lets you add lead capture widgets to any page on your WordPress site. There are four independent widgets — pick the one you need and configure only its options:
After a visitor submits, they receive an SMS with a personalized link to your FormVue video form.
You need a free FormVue account at formvue.com to obtain a Form ID.
Features:
[fvlc_inline], [fvlc_modal], [fvlc_contact], [fvlc_content]This plugin connects to the FormVue service (operated by FormVue) to capture and process leads. This connection is required for the plugin’s core functionality — without it, submitted forms cannot be delivered.
What is sent, and when:
https://formvue.com (proxied to FormVue’s API). Each event includes the configured Form ID, optional campaign/UTM attribution, the page URL, page title, referrer, and screen width.https://formvue.com to create a lead and trigger the SMS/email with the personalized form link.https://api.formvue.com.No data is sent until a widget actually renders on a page. The plugin itself loads no JavaScript from any third-party server — the widget runtime ships inside the plugin.
The widget runtime bundled in build/sdk/ is compiled from the open-source FormVue Embed SDK and includes the following libraries, all under the MIT license (GPL-compatible):
This plugin ships some minified JavaScript. The complete, un-minified source for every compiled file is included inside this plugin, and can be rebuilt with standard tools.
Gutenberg blocks — build/blocks/{inline,modal,contact,content}/index.js
blocks/ folder (React/JSX, built with @wordpress/scripts).npm install then npm run build:blocks.Widget runtime (SDK) — build/sdk/formvue-{inline,modal,contact,content}.js
sdk-src/ folder (TypeScript + Preact + Tailwind CSS, built with Vite).cd sdk-src then npm install thensdk-src/src/shared/api/v1.d.ts are generated from FormVue’s public OpenAPI schema with the openapi-typescript tool; they are type-only declarations and contain no runtime code.The bundled libraries listed under “Third-party libraries” (Preact, @preact/signals, @formisch/preact, valibot, openapi-fetch, Tailwind CSS) are all MIT-licensed.