Getting Started
...
2. Add widgets configuration code
...
For widgets to function properly, you need to generate a main script that includes all widget configuration codes and is essential for running the widgets on your website. This main script should be placed in the head section of your site
2-1. Refer to your platform’s documentation on how to insert custom code snippets into the <head> section.
...
Below are the steps for some popular platforms
Panel | ||||||
---|---|---|---|---|---|---|
| ||||||
Note | ||||||
These steps may change with future platform updates. Check the widgets on the live site after editing the pages, as preview mode might not function properly. To display property details in widgets like the The only widget that can be placed multiple times on the same page is the |
...
Start by activating Dev mode in your site
From Velo Sidebar go to
public & backend
sectionInside the Public section, add a new
.js
file to the custom-elements folder. The name and content of this file do not matter
Steps below should be repeated for each widget
Add a new custom element from
Elements
to the page and choose the source to be the new .js file created in the previous step. The tag name should be something unique, such aslistings-widget-1
for a Listings Widget. This name must be unique for each instance of widget to prevent Wix from loading a custom element beside your widget. If you see an unintended wix custom element beside your widget, recheck this step.Next, create three attributes for this custom element and set the attribute values as needed :
Attribute Name | Value |
---|---|
id | rfWidget |
widget | Widget Name e.g. : Listings . |
config | This should refer to the widget config key created instance name generated in step 12, e.g., listings-widget-1 |
...
Publish changes
3-2. Squarespace
Steps below should be repeated for each widget
Navigate to the page where you want to add a widget. Click Edit and Add an
Embed Block
in the area where you want the widget to appearEdit added embed block . set embed type as
Code Snippet
Set Embed Data to :
Code | Description | ||
---|---|---|---|
| config value refers to the widget config key created instance name generated in step 2 . e.g. : |
...
Save Page and check your changes
3-3. GoHighLevel
Steps below should be repeated for each widget
Go to the page where you want to add a widget. From the top bar, add a
Code element
from theCustom section
of theAdd Elements menu
Open code editor from the right side and add the following code :
Code | Description | ||
---|---|---|---|
| config value refers to the widget config key created instance name generated in step 2 . e.g. : |
...