Overview
Every Feedspace widget has a unique Widget ID. It is the short code inside your widget’s embed snippet that tells Feedspace which widget to load on your page. You usually need it when you use one of the Feedspace plugins, such as the WordPress or Framer plugin, which ask for a Widget ID instead of the full embed code.
A common case: you have installed the Feedspace WordPress plugin and it asks you to paste a Widget ID to place your reviews in a block or shortcode. The ID lives on your widget’s Share tab, and you can copy it from there in a couple of seconds.
Where to find your Widget ID
Step 1: Open the Widgets module
Log in to your Feedspace dashboard and click Widgets in the left sidebar. Your widgets appear as cards.
Step 2: Open the widget’s Share tab
On the widget card, click the Embed icon (the code icon) to open the editor directly on the Share tab. If the editor is already open, click the Share tab in the editor header.
Step 3: Copy the Widget ID
The HTML/WordPress tab is open by default. You can get the Widget ID in two ways:
- In the embed code box, the Widget ID is the value of
data-id inside the snippet.
- The same tab has a WordPress plugin box with a dedicated Widget ID field and a copy button. Click it to copy just the ID. The Framer tab has the same field.
In the embed code, your Widget ID is the text shown in place of YOUR_WIDGET_ID:
<div class="feedspace-embed" data-id="YOUR_WIDGET_ID"></div>
<script src="https://js.feedspace.io/v1/embed/embed.min.js" type="text/javascript" async></script>
What’s next
Once you have your Widget ID, paste it into the Widget ID field of the plugin you are using. If you are placing the widget on a plain HTML site instead, use the full embed code, which already contains the ID. See how to embed reviews using Feedspace widgets for the full steps.
Common questions
Is the Widget ID the same as the embed code?
No. The embed code is the full snippet, a div plus a script tag. The Widget ID is only the short code inside it, the data-id value. A plugin that asks for a Widget ID needs just that short code, not the whole snippet.
Does editing my widget change its Widget ID?
No. Changing the design or the selected reviews keeps the same Widget ID, and your embedded widget updates automatically. You do not need to replace the code or the ID on your site.
Where do I paste the Widget ID?
Into the Widget ID field of the plugin you are using, such as the Feedspace WordPress plugin or the Framer plugin. For a plain HTML site, use the full embed code instead, which already contains the ID.
You might also find helpful
How to Embed Reviews Using Feedspace Widgets
Overview Feedspace offers an easy way to display your customer reviews stylishly on your website. By embedding reviews through Feedspace widgets, you can enhance your website’s credibility and design. With options like Carousel and Masonry widgets, you can showcase your reviews in a way that best fits your siteβs look....
How Do I Embed a Feedspace Widget in Framer?
Overview Framer lets you add custom embed elements to any page, and Feedspace widgets work inside them directly. You paste the widget embed code into a Framer Embed block and the widget renders on your published site. A typical use: a SaaS team embeds a carousel widget on their Framer...
How to Embed a Feedspace Widget in Next.js
Overview Adding a Feedspace widget to a Next.js project requires a small adjustment compared to plain HTML. Because Next.js renders pages on the server by default, the Feedspace embed script needs to run in a client component so it has access to the browser DOM. The steps below walk you...