Learn how to integrate PRZIO popup builder into your website. Add conversion popups,exit intent popups, and lead generation popups with advanced triggers and targeting.
Get started with PRZIO popup builder platform
/signupπΈ Screenshot Placeholder: PRZIO Signup Page
Add screenshot showing the signup form with email and password fields
πΈ Screenshot Placeholder: Create Project Dialog
Add screenshot showing the project creation form with name and description fields
π‘ Pro Tip: Keep your Project ID handy - you'll need it for popup integration. You can find it in the project settings page.
Design your conversion popup in PRZIO editor
πΈ Screenshot Placeholder: Popups Dashboard
Add screenshot showing the popups list page with create button
πΈ Screenshot Placeholder: Popup Editor Interface
Add screenshot showing the popup editor with design tools and preview
πΈ Screenshot Placeholder: Saved Popup Confirmation
Add screenshot showing the success message after saving popup
Set up popup triggers and display settings
Select when your popup should appear:
πΈ Screenshot Placeholder: Popup Trigger Settings
Add screenshot showing the trigger selection dropdown with all options
If you chose Exit Intent trigger, configure these settings:
πΈ Screenshot Placeholder: Exit Intent Configuration
Add screenshot showing exit intent settings with all configuration options
πΈ Screenshot Placeholder: Display Settings Panel
Add screenshot showing all display configuration options
Control where your popup appears
Configure URL targeting to show popup on specific pages:
πΈ Screenshot Placeholder: URL Conditions Configuration
Add screenshot showing URL condition builder with examples
Choose how multiple URL conditions are evaluated:
Restrict popup to specific domains:
example.com)Add the PRZIO popup SDK to your website
Add the PRZIO popup SDK script to your HTML page. Include it before the closing </body> tag:
<script src="https://app.przio.com/sdk.js" data-project-id="YOUR_PROJECT_ID"></script>πΈ Screenshot Placeholder: HTML Code with SDK Script
Add screenshot showing HTML file with the SDK script tag and data-project-id attribute
You can also initialize the popup SDK manually:
<script src="https://app.przio.com/sdk.js"></script>
<script>
PrzioSDK.init({
projectId: 'YOUR_PROJECT_ID',
debug: false // Set to true for debugging
});
</script>For WordPress websites, use our official plugin:
πΈ Screenshot Placeholder: WordPress Plugin Settings
Add screenshot showing WordPress plugin settings page with Project ID field
Configure popup SDK settings
If you used the data-project-id attribute, the popup SDK will initialize automatically when the page loads.
β That's it! Your popups will automatically appear based on the triggers and URL conditions you configured in the PRZIO dashboard.
For more control, initialize the popup SDK manually:
<script>
// Wait for SDK to load
if (typeof PrzioSDK !== 'undefined') {
PrzioSDK.init({
projectId: 'YOUR_PROJECT_ID',
apiUrl: 'https://app.przio.com/api/sdk', // optional
debug: true // Enable debug mode to see logs
});
}
</script>Enable debug mode to see detailed logs in the browser console:
PrzioSDK.init({
projectId: 'YOUR_PROJECT_ID',
debug: true // Shows detailed logs in console
});πΈ Screenshot Placeholder: Browser Console with Debug Logs
Add screenshot showing browser console with PRZIO SDK debug messages
Verify your popup is working correctly
πΈ Screenshot Placeholder: Browser Console with SDK Initialization
Add screenshot showing console with successful SDK initialization message
πΈ Screenshot Placeholder: Popup Displayed on Website
Add screenshot showing the popup displayed on a website page
πΈ Screenshot Placeholder: Form Submission Success
Add screenshot showing successful form submission message
If your website uses a Content Security Policy, you must allow app.przio.com so the SDK can load and send API requests (e.g. popup data, personalization clicks). You do not need to whitelist app.przio.com for CORSβthat is configured on our side.
Add the following to your CSP:
https://app.przio.com if you load the SDK from app.przio.comhttps://app.przio.com so the page can call our APIsTag to implement
Add this <meta> tag inside your <head> (merge with your existing CSP if you have one):
<meta http-equiv="Content-Security-Policy" content="script-src 'self' https://app.przio.com; connect-src 'self' https://app.przio.com;">
Or set the header on your server (merge with existing CSP):
Content-Security-Policy: script-src 'self' https://app.przio.com; connect-src 'self' https://app.przio.com;
Congratulations! You've successfully integrated PRZIO popup builder into your website. You can now: