To show a unique comment section for each Story page in your Webflow “Stories Template” (Collection Page), you need to dynamically separate comments based on each story’s unique identifier. Here's how to do it:
Webflow doesn’t have built-in commenting, so you’ll need to use a third-party integration such as Disqus, Hyvor Talk, or Commento that supports unique page identifiers (like URL slugs or CMS item IDs).
Example with Disqus (use inline code only):
page.identifier and page.url using binding:slug (from CMS)https://your-site.com/stories/slug)
In your embed settings:
this.page.identifier = 'story-{{wf {slug} wf}}';this.page.url = 'https://yourdomain.com/stories/{{wf {slug} wf}}';
This tells the platform to treat each Story as a separate thread or comment space, instead of one global comment section.
To create a unique comment section per Story page in Webflow, embed a third-party comment tool like Disqus and dynamically pass the Story’s slug or URL as the comment thread’s unique identifier. This ensures that each comment section is tied to its specific CMS item.