How can I remove the date and author under the page title? This shows up on the 'Full Width" template page.
Hi,
Use this Custom CSS in Appearance -> Customize -> Additional CSS,
.page-template-full-width .entry-meta { display: none; }
Let us know,
Thanks,
laranz.
I’re tried adding the CSS but its still there…
Hi,
It seems you enter all the CSS inside the CSS comments, Comments - CSS: Cascading Style Sheets | MDN
Please remove this from the beginning,
/* You can add your own CSS here.
and this at the end,
Click the help icon above to learn more. */
That will fix the issue.
Let us know,
Thanks,
laranz.
i already try that but no changes. Can you tell me another way
Hello there,
I hope you are doing well today.
Please tr using the following CSS code to remove the date and author name:
/*Remove post date and author name*/
.post-meta {
display: none;
}
Please update me on the results.
Best Regards,
Support
To easily take away the date and author info on your page, you will have to peruse the CSS file of your theme.
Go to Appearance → Editor → Stylesheet (style.css) file and cliclk on the file to edit it.
Now, this is where the job is. It all depends on the class name the theme builder used to identify the code that displays the date and author info. I use Shapely theme and I was able to find the class name as “.bypostauthor” You may also try searching for this class name possibly its the same thing used in your theme.
Whilst on the style.css editing page, Click CTRL+F on your browser to find the class easily and paste the class name in the find field. Once you have seen the class, replace that entire line with
.bypostauthor {display:none; }
Click save and reload your page to test the changes.
I hope this helps for you too.
Hello @jibosky,
I hope you are doing well today.
Thank you for helping with this issue. That method would work however using a child theme to contain that change in the code is a good practice.
Here is a plugin that easily created child themes:
Best Regards,
Support