This could be done by a child theme for now as those specific elements don’t have specific classes to use to hide them.
Hi @romik84,
ok – but that would be a nice feature for a next version 😉
Best Regards,
Hans-Gerd
maybe 😉 in some future version 😉
Hi,
if i see that correctly, i have to comment out the lines 505 and 506 in file template-tags.php and copy the file into the childtheme folder under folder “inc”. Correct ?
I just tested it, but unfortunately it didn’t work.
Thanks for advice.
Best Regards,
Hans-Gerd
I think the closest you’ll get is adding the following into Appearance->Customize->Additional CSS
.container .post .post-meta .author :not(.published) {
display: none;
}
.container .post .post-meta span {
color: #249a25;
}
.container .post .post-meta {
color: white;
}
Without modifying the theme files or having to use a child theme
Hi @jarretc, yes, that pseudo class can do its job too 😉
Hi @jarretc,
thanks a lot. I will try it and will back here soon.
Hi @jarretc,
thanks a lot again. It works, but I have it changed a little:
.container .post .post-meta .author :not(.published) {
color: white;
}
.container .post .post-meta span {
color: #249a25;
}
.container .post .post-meta {
color: white;
}
Best Regards,
Hans-Gerd