-
AuthorPosts
-
October 30, 2014 at 4:26 pm #135439
Hi,
I would like to remove the date from all of my posts. I’m using the child theme RENEW. I don’t know how to get into the php files and would if possible much prefer to add this as a CSS. Is there such a way? Or would I have to alter the php files and if so how?
Many thanks for any replies!
Kate
October 30, 2014 at 10:00 pm #135593Hi there,
Use the following CSS workaround, place it into your Customizer, Custom > CSS section using the menu Appearance -> Customize.
.blog .entry-header .p-meta > span:nth-child(1), .single .entry-header .p-meta > span:nth-child(1) { display: none; } .blog .entry-header .p-meta > span:nth-child(2), .single .entry-header .p-meta > span:nth-child(2) { display: none; }
Hope that helps.
November 1, 2014 at 10:48 am #136466Thanks very much for the reply. Unfortunately it didn’t seem to work, I’m not sure why, maybe I’ve done something? I pasted it into the CSS part of the customise section.
Thanks again.
November 1, 2014 at 4:54 pm #136575Hi Kate,
Can you please try adding this CSS code below instead?
.p-meta span:first-of-type, .p-meta span:nth-of-type(2) { display: none; }
If that doesn’t work, would you mind providing url of your site for us to check,
Thank you
November 10, 2014 at 10:08 am #141798Hi,
I’m sorry about the delay in getting back. Many thanks again for the info. I tried the above link but that didn’t work either. My url is https://cambridgewithkids.com
Many thanks again
Kate
November 10, 2014 at 10:40 am #141852Hi there,
Please add the following CSS code into your Customizer, Custom > CSS section.
.x-recent-posts-date { display: none !important; }
Hope that helps.
November 10, 2014 at 10:42 pm #142221how about removing the date and category on the images in the blog slider as well as the arrows and the ‘view post’ box? http://bagnato.com
November 11, 2014 at 7:59 am #142460Hi,
You can add this under Custom > CSS in the Customizer.
.x-post-slider .flex-direction-nav a, .x-post-slider .featured-view, .x-post-slider .featured-meta { display:none; }
Thanks
November 11, 2014 at 5:42 pm #142926Thanks so much..support forum here is great…many thanks!!
November 12, 2014 at 3:14 am #143131Dear Support,
I tried the custom CSS from November 10th and that worked on my Home page which is great thanks! The date still shows in my feed in what’s on pages but this is less important.
Thanks very much again
Kate
November 12, 2014 at 6:49 am #143258Hey Katy,
Try adding:
.p-meta { display: none; }
Let me know if that did the trick.
November 17, 2014 at 8:34 am #146763Hi,
Yes that did the trick, brilliant thank you!
Kate
November 17, 2014 at 11:53 am #146941Hi Kate,
You’re welcome. Don’t hesitate to contact support anytime!
June 25, 2015 at 1:05 pm #312920This reply has been marked as private.June 25, 2015 at 2:58 pm #313040Glad you got the solution 🙂 .
-
AuthorPosts