This guide explains how to properly configure your existing designed pop-up root container to work seamlessly with the Popup Builder application.
Overview
To integrate your existing popups with Popup Builder, your popup container must include specific attributes, classes, and embedded code. This ensures proper functionality and compatibility with our system.
Required Setup
1. Essential Attributes
Your popup root container must include these mandatory attributes:
Add this embedded <style> block to ensure proper popup visibility control:
<style>/* Hides popup elements when not in Webflow Designer mode */html:not(.wf-doc) .flowappz-hide-popup {display: none;opacity: 0;pointer-events: none;visibility: hidden;transition: opacity 0.2sease;}</style>
Note: This CSS ensures your popup remains hidden on the live site while remaining visible in Webflow's Designer for editing.
3. Content Structure Attributes
Within your popup structure, add these specific attributes:
Content Wrapper: Add fa-popup-content-wrapper="true" to your main content container
Close Button: Add fa-popup-close-button="true" to your close button element
Configuration Object
Basic Structure
The fa-popup-config attribute must contain a JSON configuration object with the following structure:
Complete Configuration Example
<details> <summary>Click to view full configuration example</summary>
</details>
Optional Features
Countdown Timer
If your popup includes a countdown timer, add these attributes to the respective time display elements:
Implementation Checklist
Before integrating your popup, ensure you have:
[ ] Added all required attributes to the root container
[ ] Included the flowappz-hide-popup class
[ ] Embedded the CSS hiding behavior
[ ] Added content wrapper and close button attributes
[ ] Configured the JSON settings object
[ ] Added countdown attributes (if applicable)
[ ] Tested visibility in both Designer and live site
Troubleshooting
Popup not appearing?
Verify the CSS hiding behavior is correctly implemented
Check that aria-hidden is set to "false"
Ensure the configuration JSON is valid
Popup always visible?
Confirm the flowappz-hide-popup class is applied
Verify the embedded CSS is present in your page
Configuration not working?
Validate your JSON syntax using a JSON validator
Ensure all required fields are present in the configuration object
For additional support or questions about popup integration, please contact our support team or refer to our API documentation.