Skip to main content

Setup Guide

Embed Flowvi Forms in WordPress

Add Flowvi forms to any WordPress page or post in minutes

Get Your Embed Code

Step-by-Step Guide

1

Get your form embed code

In your Flowvi dashboard, open the form you want to embed and click "Share". Copy the iframe embed code.

<iframe
  src="https://flowvi.dev/submit/your-form-id"
  width="100%"
  height="600"
  frameborder="0"
  allowfullscreen
></iframe>
2

Add to WordPress using the Custom HTML block

In the WordPress editor, add a "Custom HTML" block. Paste the iframe code. Adjust the height to fit your form.

3

Or use the WordPress shortcode (optional)

For reusable embeds, add this to your theme's functions.php or a custom plugin:

function flowvi_form($atts) {
  $id = $atts["id"];
  return '<iframe src="https://flowvi.dev/submit/' . esc_attr($id) . '" width="100%" height="600" frameborder="0" allowfullscreen></iframe>';
}
add_shortcode("flowvi", "flowvi_form");
4

Use the shortcode in any page

Once registered, use the shortcode in any page or post:

[flowvi id="your-form-id"]
5

Test your embedded form

Visit the published page and submit the form to verify it works correctly. Check that notifications are triggered.

Frequently Asked Questions

Do I need a WordPress plugin to embed Flowvi forms?
No. Flowvi forms can be embedded using a simple iframe, which works with any WordPress theme. No plugin installation is required.
Will Flowvi forms work with WordPress page builders?
Yes. Elementor, Divi, WPBakery, and other page builders all support Custom HTML blocks where you can paste the iframe code.
Can I customize the form height?
Yes. Adjust the height attribute in the iframe code. You can also use CSS to make the iframe responsive.

Ready to embed?

Create your form and get the embed code in minutes. Free plan available.

Get Started Free