Site logo

[Resolved] Meta below featured image – but now additionally shown on homepage ?

Home Forums Support [Resolved] Meta below featured image – but now additionally shown on homepage ?

Home Forums Support Meta below featured image – but now additionally shown on homepage ?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1571451
    Jasmina

    Hi there,

    I have already searched the forum to display the meta information under the featured image. That worked with this instruction: https://generatepress.com/forums/topic/moving-post-meta-date-updated-below-featured-image-is-not-working-after-3-0/

    But now the meta information also appear on the homepage and on all other pages. How can I turn this off?
    for example: https://konfettiundtaler.de/

    thanks for your help
    kind regards
    jasmina

    #1571483
    David
    Staff
    Customer Support

    Hi there,

    try this code instead:

    add_action( 'wp', function() {
        if (is_single()) {
            remove_action( 'generate_after_entry_title', 'generate_post_meta' );
            add_action( 'generate_after_entry_header', 'generate_post_meta', 15 );
        }
    } );
    #1572500
    Jasmina

    Thanks a lot, David! Works fine ! 🙂 Great & fast support !

    #1572581
    David
    Staff
    Customer Support

    Glad to be of help!

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.