Blog post, way to hide just the author name only and keep date?

On the Blog posts, IS there a way to hide just the author name only and keep date?
Is there a simple css or do i have add child theme?

Also I had added code to remove the icon of the piece of paper and its still showing? thoughts?

Hi there,

Thanks for writing in! To hide the author only you can simply add the following code in the Theme Options > CSS:

.blog .p-meta>span:first-child {
    display: none;
}

If you would like to learn CSS, I am sharing few resources that you take a look to get started with CSS and an interesting tool that you can use to speed up the development process.

I recommend you to watch following video that will help you to get started with CSS.

https://www.youtube.com/watch?v=MFR4WXiLzpc

Sometimes it can get a bit difficult to find out the right selector to be able to write the required CSS codes. A handy tool that can help you in this is Google Chrome dev tools. I am sharing the resource that you can refer to get started with dev tools.

https://developers.google.com/web/tools/chrome-devtools/css/

https://developers.google.com/web/tools/chrome-devtools/

https://www.youtube.com/watch?v=tP_kXBJWPhQ&t=200s

Cheers!

Hi. How do I accomplish this also inside the post? Right now it hides it only on the main Blog Page.

Thanks!

Hello There,

If you want to apply your changes in the blog and single blog posts, please have the code updated and use this:

.p-meta>span:first-child {
  display: none;
}

We would loved to know if this has work for you. Thank you.

HI this worked, but I’m still seeing the paper icon in the title on the article pages but not on blog page. I don’t want it on either page.

I had added this to remove on main page.

.blog .entry-title:before {
display: none;
}

Hi,

Please change the css code to this.

body .entry-title:before {
     display: none;
}

Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.