Can you have a section on a dynamic item page that is not dynamic/connected to the CMS?

I have a collection for which I’d like to have a separate dynamic item page for each item. I have this set up, and it’s working properly where each item gets its own page.

Is it possible to then add a section to the dynamic item page that is different for each item / not dynamic/feeding from the collection?

I’d like the top of each dynamic item page to have the same formatting and pull from the collection, but then I’d like to be able to design the bottom of each item page to look different and contain different elements for each item page. Is that possible?

Thank you!

I’ve added a section at the bottom of the dynamic page, and made sure that both the section and the elements in the section are not connected to the CMS (via the “Connect to CMS” button), and yet the content in that section is still appearing on each of the dynamic item pages.

you can hide items based on if a field in the cms is empty - this may work if you adapt it to suit your requirements

const currentItem = $w('#yourDatasetID').getCurrentItem();

$w.onReady(function () {
     if (!currentItem.databaseFeildID) { $w("#itemToHideID").collapse(); }
});