Skip Navigation

[Resolved] Author and category suddenly in header

This support ticket is created 3 years, 1 month ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Hong_Kong (GMT+08:00)

This topic contains 2 replies, has 2 voices.

Last updated by ronM-3 3 years, 1 month ago.

Assisted by: Luo Yang.

Author
Posts
#2538183
Category and author showing.png
Author showing.png

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">
</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

#2538395

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/

#2539005

My issue is resolved now. Thank you!