[Resolved] Search results not showing post title

Home Forums Support [Resolved] Search results not showing post title

Home Forums Support Search results not showing post title

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1505993
    Brian

    Hi
    I’m not sure what happened here or when the change was made, but my search results are not displaying the post title. The featured image is there but nothing else. I have it set to just show the image followed by the title, any idea how I can fix this?

    Thanks
    Brian

    #1506166
    David
    Staff
    Customer Support

    Hi there,

    do you have any custom functions that you’re using to change the display of post archives ?

    #1506209
    Brian

    To Remove Archive Description Paginated

    add_filter( ‘generate_header_element_display’, function( $display ) {
    if ( is_paged() ) {
    $display = false;
    }

    return $display;
    } );

    add_action( ‘wp’, ‘tu_remove_paged_category_description’ );
    function tu_remove_paged_category_description() {
    $page = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
    if ( 1 !== $page ) {
    remove_action( ‘generate_archive_title’, ‘generate_archive_title’ );
    add_action( ‘generate_archive_title’, ‘tu_custom_paged_archive_title’ );
    }
    }

    function tu_custom_paged_archive_title() {
    ?>
    <header class=”page-header”>
    <h1 class=”page-title”>
    <?php the_archive_title(); ?>
    </h1>
    </header>
    <?php
    }

    #1506221
    Brian

    and possibly this

    add_shortcode( ‘term_description’, ‘tu_term_description’ );
    function tu_term_description() {
    ob_start();
    echo term_description( get_queried_object()->term_id, ‘category’ );
    return ob_get_clean();
    }

    #1506705
    Leo
    Staff
    Customer Support

    I don’t think those functions would cause this issue.

    Can you temporarily remove them to test?

    #1506785
    Brian

    HI Leo/David
    I deactivated all of my snippets and that didn’t help.
    Could it be a plugin conflict?

    #1506803
    Leo
    Staff
    Customer Support

    Do you have a layout element created that is disabling the content title by chance?

    #1507353
    Brian

    Hi Leo
    Yes! I have a layout for pages and archives and for some reason I had clicked to disable the title. I’m not sure why I did that, but I changed it and all is well now.

    With Generatepress there are so many possible edits I need to use the notes section better so I don’t forget why I implemented each one πŸ™‚
    Thanks for the help!

    #1508127
    Leo
    Staff
    Customer Support

    Glad to hear πŸ™‚

    #1523128
    Leif

    @Leo, I’m having this same issue. My search results and category pages are not showing the post titles. Only get the featured image and an excerpt.

    I cannot find a way to turn them back on and I don’t believe I have any custom css that would interfere.

    Site: Physician on FIRE

    #1523131
    Elvin
    Staff
    Customer Support

    Hi @Leif,

    As this topic is resolved for the topic starter, can you open a new topic? So you could use the Private information text field if we have to ask for site details. πŸ™‚

    We’ll make sure to address your concern on it.

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