I need help adding unique content to a specific dynamic page

I’m having trouble with:
Adding unique, custom-written content to a specific dynamic page in my CMS. The content field isn’t behaving as expected — it either won’t display the new text on the live page or overrides the layout in ways I can’t control.

Working in:
Wix Studio / CMS (Dynamic Pages)

Site link:

What I’m trying to do:
I want to add a short unique paragraph to just one project page (“I’m a rental!” style callout). I need it to show only on that specific page — not across the entire dynamic template.

What I’ve tried so far:

  • Googling solutions

  • Looking through Wix help articles

  • Trying to add a new CMS field

  • Trying to place a regular text box on the page

  • Rebinding/refreshing dataset
    I don’t know how to code, so I’m hoping there’s a non-code way to solve this.

Extra context:
This is part of a dynamic page set, so every page shares the same structure. I’m unsure if I need another CMS field, a conditional setup, or something else. I just want one page to have unique content without editing the entire dataset structure for all pages.

You can add a check for the particular item _id of the dynamic page you want to modify, and show a unique element when it is detected.

getCurrentItem() allows you to get the dynamic dataset’s current item when the page loads.

In Wix Studio dynamic pages, the easiest non-code solution is to add a new CMS field specifically for your unique content, e.g., customCallout. Then, on your dynamic page, bind a text box to that field. For pages where you don’t want the text to show, leave the field blank. This way, only the page you fill in will display the unique paragraph, without affecting other pages.