Zoho Forms
Zoho Forms is an online form builder that allows forms to be created and embedded on websites to collect visitor data.
Key features include:
- Form builder with configurable input fields
- Multiple embed methods including iframe, JavaScript, hyperlink, and lightbox pop-up
- Form submission management within the Zoho Forms dashboard
- Optional integrations with third-party services
Zoho Forms integrates with ShopWired using a JavaScript to display forms on ShopWired website pages.
Account creation
Account creation
Create an account on the Zoho Forms website. Once the account is created and configured, you will be provided with an embed code.
Adding Zoho Forms to website pages
Adding Zoho Forms to website pages
To display forms on your ShopWired website, Zoho Forms will provide you with a JavaScript embed code, similar to the example shown below:
<div id="zf_div_FORM_ID"></div>
<script type="text/javascript">
(function () {
try {
var f = document.createElement("iframe");
f.src = "https://forms.zohopublic.eu/youraccount/form/your-form-name/formperma/FORM_ID";
f.style.border = "none";
f.style.height = "800px";
f.style.width = "100%";
var d = document.getElementById("zf_div_FORM_ID");
d.appendChild(f);
} catch (e) {}
})();
</script>
The code shown above is provided as an example only. You must copy the exact code provided in your own account, as the code and any ID values will be unique to your website.
Add the embed code to your ShopWired website:
- Navigate to Website > Themes
- Select
customise your theme - Open the page where the form should appear
- Select
add a new section - Select the
custom HTMLsection type - Paste the iframe embed code into the Custom HTML setting
- Select out of the section and use the theme editor to position the form on the page
- Save changes
Recommendations
Recommendations
- Test embedded forms on desktop and mobile devices after publishing.