Site logo

[Resolved] Featured Image caption appearing on homepage/ sidebar images

Home Forums Support [Resolved] Featured Image caption appearing on homepage/ sidebar images

Home Forums Support Featured Image caption appearing on homepage/ sidebar images

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #2415865
    victor

    Hello,

    How can I disable the featured image caption from appearing there? I want it to appear on posts only. I don’t want the caption to appear area like this 👉 https://ibb.co/0tGPCcZ

    #2415884
    Fernando
    Customer Support

    Hi Victor,

    By default, the Featured image caption shouldn’t be appearing.

    For reference, can you provide the link to the site in question?

    You may use the Private Information field for this: https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information

    #2416252
    victor

    Hi, click on any post on twendesasa.com and peep on the side bar widget..you will see the copyright caption appearing too.How can I fix this?

    This is the code on the snippet.

    add_action( ‘post_thumbnail_html’, ‘db_auto_single_featured_caption’, 10 );
    function db_auto_single_featured_caption( $html ) {
    $caption = get_the_post_thumbnail_caption();
    if ( is_single() && !empty($caption) ){
    $html .= ‘

    ‘. $caption . ‘

    ‘;
    }
    return $html;
    }

    #2416273
    David
    Staff
    Customer Support

    Hi there,

    simplest fix would be to hide it with some CSS:

    
    aside .wp-show-posts-image .wp-caption {
        display: none;
    }
    #2416275
    victor

    Thank you.

    #2416281
    David
    Staff
    Customer Support

    You’re welcome

    #2416282
    victor

    tried adding the css to stavica.com..seems like the captions are still appealing on the homepage. any fix?
    Update: Figured it out.

    #2416310
    David
    Staff
    Customer Support

    Glad to hear that!

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