Site logo

Archived topic

No Date and Autor in Podlove Podcast Episodes

5 replies · Started by Peer Wandiger on March 4, 2022

Viewing posts 1–6 of 6

Hello,
I found a problem in my blog. In my Podlove-Plugin Podcast Episodes, there are no date and autor below the Headline. In all other normal posts these informations are shown.

I tested some things and could nail it down to the GeneratePress Theme. I changed the theme and then the date and author where visible in the podcast episodes. After I switched back to GeneratePress, there where gone again.

Here is an episode, where date and autor are not visible. I even dont find them in den code.
https://www.selbstaendig-im-netz.de/podcast/028-nischenseiten-optimierungs-challenge-2021-zwischenstand-sin-podcast/

I dont know how to solve this problem.

Hello Leo,
no, I refering the section directly below the headline of the post.

Here is a normal post, where author and date are shown below the headline:
https://www.selbstaendig-im-netz.de/google/was-genau-sind-hochwertige-inhalte-fuer-websites/

But in the podcast-episodes, they are not visible:
https://www.selbstaendig-im-netz.de/podcast/028-nischenseiten-optimierungs-challenge-2021-zwischenstand-sin-podcast/

When I switch the theme, then the date and author are shown in the podcast-episodes below the headline. But not when generatepress is the active theme.

Hi there,

you need to enable the themes post meta on CPT templates.
You can use add this PHP Snippet to your site to do that:

add_filter( 'generate_entry_meta_post_types', function( $types ) {
    $types[] = 'my-post-type';

    return $types;
} );

You need to change the my-post-type to your post type slug

Hello David,
thanks alot. It worked. :-)

Peer

Glad to hear that

This archived topic is closed to new replies.