luke2 Posted October 29, 2019 Share Posted October 29, 2019 Hi, Seems like a common question but can't find a solution that works for the bedford blog. Does anybody know how to hide the 'Date Published' info on the actual blog posts? Example: https://www.growthstrategist.com/blog-posts/2019/5/11/why-brands-need-user-generated-content Thanks, Link to comment
tuanphan Posted October 29, 2019 Share Posted October 29, 2019 Add to Home > Design > Custom CSS .collection-type-blog.view-item .dt-published.post-date { display: none; } barrysutton and charlenedamali 1 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!) Link to comment
luke2 Posted October 29, 2019 Author Share Posted October 29, 2019 (edited) Thanks a lot @tuanphan It still shows on the actual blog post. Is there additional CSS i can add? https://www.growthstrategist.com/blog-posts/2019/5/11/7-online-marketing-mistakes-you-need-to-stop-making-neil-patel Edited October 29, 2019 by luke2 Link to comment
tuanphan Posted October 29, 2019 Share Posted October 29, 2019 @luke2 /* remove date single post */ .collection-type-blog.view-item .entry-dateline { display: none; } /* fix padding left */ .collection-type-blog.view-item .entry-morefrom:before { display: none; } barrysutton and luke2 2 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!) Link to comment
luke2 Posted October 29, 2019 Author Share Posted October 29, 2019 Thanks so much @tuanphan. Much appreciated! Link to comment
barrysutton Posted November 16, 2019 Share Posted November 16, 2019 @tuanphan can I add to this question? Your code worked, but the blog post date is still showing up in the banner. Any suggestions on code to remove this? Screenshot attached. Thanks! Link to comment
tuanphan Posted November 16, 2019 Share Posted November 16, 2019 Just now, barrysutton said: @tuanphan can I add to this question? Your code worked, but the blog post date is still showing up in the banner. Any suggestions on code to remove this? Screenshot attached. Thanks! Please share blog post url to check. 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!) Link to comment
barrysutton Posted November 16, 2019 Share Posted November 16, 2019 https://ann-tashi-slater.squarespace.com/writing pass: ann-tashi-slater thanks! Link to comment
tuanphan Posted November 16, 2019 Share Posted November 16, 2019 Just now, barrysutton said: https://ann-tashi-slater.squarespace.com/writing pass: ann-tashi-slater thanks! in correct password 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!) Link to comment
barrysutton Posted November 16, 2019 Share Posted November 16, 2019 sorry remove dashes: anntashislater Link to comment
tuanphan Posted November 16, 2019 Share Posted November 16, 2019 2 minutes ago, barrysutton said: sorry remove dashes: anntashislater .collection-type-blog.view-list .dt-published.post-date { display: none; } barrysutton 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!) Link to comment
barrysutton Posted November 16, 2019 Share Posted November 16, 2019 amazing thank you so much. have a great day! tuanphan 1 Link to comment
barrysutton Posted November 16, 2019 Share Posted November 16, 2019 @tuanphan just realized the date still appears on the individual blog post, though it was removed from the main blog page. Is there another snippet I need to add to remove? thank you so much. Link to comment
tuanphan Posted November 16, 2019 Share Posted November 16, 2019 Just now, barrysutton said: @tuanphan just realized the date still appears on the individual blog post, though it was removed from the main blog page. Is there another snippet I need to add to remove? thank you so much. .collection-type-blog.view-list, .collection-type-blog.view-item { .dt-published.post-date { display: none; } } barrysutton 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!) Link to comment
barrysutton Posted November 16, 2019 Share Posted November 16, 2019 Many thanks again! Are there any guides I can find to help with these types of code snippets? Link to comment
tuanphan Posted November 16, 2019 Share Posted November 16, 2019 1 minute ago, barrysutton said: Many thanks again! Are there any guides I can find to help with these types of code snippets? My signature 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!) Link to comment
stevenbiggs Posted March 28, 2022 Share Posted March 28, 2022 @tuanphan I've tried the code above to remove blog post dates on my site https://www.foodgardenlife.com. They're still there. What CSS should I add? thanks! Link to comment
tuanphan Posted March 30, 2022 Share Posted March 30, 2022 On 3/29/2022 at 2:30 AM, stevenbiggs said: @tuanphan I've tried the code above to remove blog post dates on my site https://www.foodgardenlife.com. They're still there. What CSS should I add? thanks! Use this CSS /* hide blog date */ div.entry-dateline { display: none; } 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!) Link to comment
stevenbiggs Posted March 30, 2022 Share Posted March 30, 2022 3 hours ago, tuanphan said: Use this CSS /* hide blog date */ div.entry-dateline { display: none; } Thank you! Link to comment
cashie Posted May 25, 2022 Share Posted May 25, 2022 If I use this code, will it remove the blog date from all blogs? I'm using the blog feature on my site twice -- one for an actual blog and another to house some info sheets. (I'm using the blog feature for my info sheets because it's the only way I can attach categories to my entries.) I would like to remove the date from my info sheets but keep the date on my blog. Is there a way to do that? Thanks in advance! Link to comment
tuanphan Posted May 26, 2022 Share Posted May 26, 2022 21 hours ago, SarahCashmore said: If I use this code, will it remove the blog date from all blogs? I'm using the blog feature on my site twice -- one for an actual blog and another to house some info sheets. (I'm using the blog feature for my info sheets because it's the only way I can attach categories to my entries.) I would like to remove the date from my info sheets but keep the date on my blog. Is there a way to do that? Thanks in advance! Add to Info Sheets Page Header <style> /* hide blog date */ div.entry-dateline { display: none; } </style> 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!) Link to comment
Linda-Leseman Posted January 4, 2023 Share Posted January 4, 2023 Hi, I have tried all the above code and still see the date on blog posts. Is there other code I should try? https://vortexrep.org/support-the-vortex/membership Link to comment
tuanphan Posted January 7, 2023 Share Posted January 7, 2023 On 1/5/2023 at 6:28 AM, Linda-Leseman said: Hi, I have tried all the above code and still see the date on blog posts. Is there other code I should try? https://vortexrep.org/support-the-vortex/membership Try this CSS code time.dt-published.published.post-date { display: none !important; } 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!) Link to comment
Linda-Leseman Posted January 13, 2023 Share Posted January 13, 2023 Unfortunately, that doesn't work. If I inject into the header code, it literally shows up on the site above the header. If I inject into the Post Item Code, it does nothing. Date still appears on the blog post. If I add to the global custom CSS, it does nothing. Date still appears on the blog post. So far, the best I can do is turn the date text to white so it blends into the background, but technically it's still there on the page. If you highlight the text on the page with your mouse, you will see it. I would also like the title of the blog post ("MEMBERSHIP") not to appear over the header image, and I would like for the "Older Post" navigation option not to appear at the bottom of the page. Any ideas how to change these things? https://vortexrep.org/support-the-vortex/membership Link to comment
tuanphan Posted January 18, 2023 Share Posted January 18, 2023 On 1/14/2023 at 6:48 AM, Linda-Leseman said: Unfortunately, that doesn't work. If I inject into the header code, it literally shows up on the site above the header. If I inject into the Post Item Code, it does nothing. Date still appears on the blog post. If I add to the global custom CSS, it does nothing. Date still appears on the blog post. So far, the best I can do is turn the date text to white so it blends into the background, but technically it's still there on the page. If you highlight the text on the page with your mouse, you will see it. I would also like the title of the blog post ("MEMBERSHIP") not to appear over the header image, and I would like for the "Older Post" navigation option not to appear at the bottom of the page. Any ideas how to change these things? https://vortexrep.org/support-the-vortex/membership It is CSS code, you can't add it to Page Header or Code Injection, you need to add it to Custom CSS.. That code I checked on Bedford template demo url. If it doesn't work, maybe you added it in wrong position in CSS box. If it still doesn't work, keep the code & let me know, we can check it easier 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!) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment