How to remove Date from Squarespace Blog Post

You can do these on Blog Page settings, but here we will use CSS code to remove date from Squarespace Blog.
To remove Date on the Blog List, you can use this code to Custom CSS box

/* remove date - blog list */
body.view-list time.blog-date {
    display: none !important;
}

To remove Date on Blog Posts, you can use this code to Custom CSS box

/* remove date - blog posts */
body.view-item time.blog-date {
    display: none !important;
}

To remove Date from a specific post, you can edit post > Add a Code Block > Paste this code

<!-- Remove date from specific post -->
<style>
time.blog-date {
    display: none !important;
}
</style>

To remove Date from a specific Blog Page, you can find the Page ID, then use this code to Custom CSS box

/* Remove date from specific blog page */
#collection-659dee5c800e1d5252f91c72 time.blog-date {
    display: none !important;
}