Installing the Widget¶
This guide explains how to add the Voxum chat widget to your website. The process involves copying a small piece of code and pasting it into your website.
Getting Your Widget Code¶
- Go to Widget in the left menu
- Scroll to the Embed Code section
- You'll see code that looks like this:
<script src="https://app.voxum.ai/widget.js"
data-property="your-property-id">
</script>
- Click Copy to Clipboard

Installation by Platform¶
Choose your website platform below for specific instructions.
WordPress¶
- Go to Appearance → Theme Editor in WordPress admin
- Select your active theme
- Find and click on
footer.php - Paste the widget code just before
</body> - Click Update File
- Install "Insert Headers and Footers" plugin (or similar)
- Go to Settings → Insert Headers and Footers
- Paste the widget code in the Footer section
- Click Save
Why use a plugin?
Using a plugin keeps your code safe when you update your theme.
Shopify¶
- Go to Online Store → Themes
- Click Actions → Edit code on your current theme
- In the Layout folder, click
theme.liquid - Find
</body>near the bottom - Paste the widget code just before
</body> - Click Save
Squarespace¶
- Go to Settings → Advanced → Code Injection
- Paste the widget code in the Footer section
- Click Save
Note
Code Injection requires a Squarespace Business plan or higher.
Wix¶
- Go to your Wix Editor
- Click Add (+) → Embed → Custom Embeds → Embed a Widget
- Click Enter Code
- Paste the widget code
- Position the widget (it will appear at the corner regardless)
- Click Apply
Alternatively:
- Go to Settings → Custom Code
- Click + Add Custom Code
- Paste the code
- Set location to Body - end
- Apply to All pages
- Click Apply
Webflow¶
- Go to Project Settings → Custom Code
- Paste the widget code in the Footer Code section
- Click Save Changes
- Publish your site
Custom HTML / Other Platforms¶
For any platform that lets you edit HTML:
- Find your main HTML template or footer file
- Locate the closing
</body>tag - Paste the widget code immediately before
</body> - Save and publish
Example placement:
<!-- Your page content above -->
<script src="https://app.voxum.ai/widget.js"
data-property="your-property-id">
</script>
</body>
</html>
Verifying Installation¶
After adding the code:
- Visit your website in a new browser tab
- Look for the chat bubble in the bottom-right corner
- Click on it to open the chat
- Type a test message
- Verify you receive a response

Showing Widget on Specific Pages¶
By default, the widget appears on all pages. To show it only on certain pages:
WordPress with Plugin¶
Use a plugin like "Widget Logic" or configure your header/footer plugin to show code only on specific pages.
Conditional Code (Advanced)¶
Wrap the widget code in a condition based on your platform's templating language:
WordPress Example:
<?php if (is_page('contact') || is_page('pricing')): ?>
<script src="https://app.voxum.ai/widget.js"
data-property="your-property-id">
</script>
<?php endif; ?>
Specific Pages Only¶
If you can edit individual pages, add the widget code only to those pages' custom code sections.
Troubleshooting¶
Widget doesn't appear¶
Check these items:
- Code placement - Is it before
</body>? - Published - Did you save and publish your changes?
- Cache - Try clearing your browser cache
- Ad blockers - Disable ad blockers temporarily
- Console errors - Check browser developer tools for errors
Widget appears but doesn't work¶
- Property ID - Verify your property ID is correct
- Domain - Make sure your domain is registered in Voxum
- JavaScript - Check for JavaScript errors in the console
Widget in wrong position¶
The widget is designed to appear in the bottom-right corner. This is intentional and cannot be changed.
Widget overlapping content¶
If the widget covers important content:
- Add padding to your footer:
padding-bottom: 80px; - Ensure the widget area is free of critical elements
Multiple widgets appearing¶
You may have added the code more than once. Search your site for the widget code and remove duplicates.
Need Help?¶
If you're not comfortable editing your website code:
- Copy your widget code from the admin panel
- Send it to your web developer or IT team
- Tell them: "Please add this code before the closing body tag on our website"
Most developers will know exactly what to do with this instruction.
Testing Across Devices¶
After installation, test on:
- [ ] Desktop (Chrome, Firefox, Safari)
- [ ] Mobile phone
- [ ] Tablet
- [ ] Different screen sizes
The widget should work consistently across all devices.
Next Steps¶
- Customizing Appearance - Make the widget match your brand
- Behavior Settings - Configure how the widget acts
- Quick Start Guide - Complete setup guide