Hi,
Recently the author information showed up in the header of custom post types detail screens.
For example: hidden link
which states "Door WPBeheerder" near the logo.
How can I disable this?
On the blog page, the category is also shown in the header (next to the author.
For example: hidden link which states "Teamcoaching / Door WPBeheerder".
In the source-code (ctrl-u) this code is:
<header class="entry-header ast-no-title">
<div class="entry-meta"> / <span class="ast-terms-link">hidden link">Teamcoaching</span> / Door <span class="posted-by vcard author" itemtype="hidden link" itemscope="itemscope" itemprop="author">
class="url fn n" itemprop="url" >
<span
class="author-name" itemprop="name" >Yolanda van Dongen</span>
</span>
How can I disable the category as well?
Note: For some content templates the post title was also suddenly shown. I managed to disable that using theme options sidebar.
Thanks for your help.
Ron
Hello,
It depends on your theme file, Toolset content template works only in the post content area, those ".entry-meta" HTML DIV tags should output from your theme file, you can ask help from your theme author to remove them.
Or you can hide them with custom CSS codes:
.entry-meta{
display:none;
}
More help:
https://toolset.com/course-lesson/adding-custom-css-to-templates-archives-and-views/
My issue is resolved now. Thank you!