My Titles won't change on custom post page

Hi! I’m back again to tell you all that I finally got it to work somewhat!

I followed this link with full instructions on how to do it https://www.wix.com/corvid/forum/community-discussion/custom-blog-page-using-corvid-help

but my title, author name, and photographer name (i only have one photgrapher name in one slot on my collection’s live Sandbox) will not change according to different post.

How can I fix this?

maybe share your site or elaborate more on what you’re trying to do.
i couldn’t understand from this post what’s the issue you’re facing.

Are there any Console Errors ?

This function from the example assigns the data to different elements.
Make sure that the names of the components are correct.


function assignPostDataToUIElements() {
    $w("#postTitle").text = currentPost.title
    $w("#authorName").text = `Written by: ${currentPost.author}`
    $w("#photographerName").text = `Images by: ${currentPost.photographer}`
    $w("#postHeaderStrip").background.src = currentPost.coverImage
    $w("#postHeaderStrip").show("fade")
}