tuanphan Posted July 3 Posted July 3 If you want to remove Date from Blog, Blog Posts, you can follow these. #1. To remove the Date on the Blog List Page, you can edit the Blog Page Change Primary Meta Content (or Secondary Meta Content) from Date to None or you can also use this code to Custom CSS box /* remove date - blog list */ body.view-list time.blog-date { display: none !important; } #2. To remove Date on Blog Posts, you can open any posts > Click Edit Section Disable the “Show Date” option you can also use this code to Custom CSS box /* remove date - blog posts */ body.view-item time.blog-date { display: none !important; } #3. To remove Date from a specific post, you can edit post > Add a Code Block > Paste this code. Code Block is available in all plans (include Personal Plan) <!-- Remove date from specific post --> <style> time.blog-date { display: none !important; } </style> #4. To remove Date from a specific Blog Page, you can find the Page ID with below tool, then use this code to Custom CSS box. Replace #collection...c72 with your Blog Page ID https://forum.squarespace.com/topic/305813-share-find-id-of-a-block/ /* Remove date from specific blog page */ #collection-659dee5c800e1d5252f91c72 time.blog-date { display: none !important; } Ellaouise 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment