Hi,
I managed to remove the author’s name in the overview blog, but it is still showing up in the single posts. I tried several options from the support-answers to other customers, but it didn’t work out. Can you help please?
kind regards, Astrid
Hey @lumijans,
If you’re using the Integrity or Renew stack, add the following code in Theme Options > CSS to hide the author in the Entry Meta.
.entry-header .p-meta span:first-child {
display: none;
}
For Ethos or even for all stacks, it’s best to remove the PHP code that outputs the author. This is more advanced or would require PHP knowledge though so you will need to hire a web developer if you’re not sure how to go about this. Below is the guide for developers.
Open this directory in the theme folder framework\functions\frontend and open the PHP file for the stack. For example, open ethos.php if you’re using the Ethos stack. Next, copy the x_ethos_entry_meta function to your child theme’s functions.php and modify the function.
Hope that helps.
Thanks, this works in Integrity indeed.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.