[Resolved] Look of search page, esp. featured post

Home Forums Support [Resolved] Look of search page, esp. featured post

Home Forums Support Look of search page, esp. featured post

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #478207
    Dushan

    Hi, while I love the “featured” (=first and largest) post on the front page, the first post being automatically “featured” on the search results page seems weird. – Any way to style the search results page differently than the homepage?

    #478334
    Leo
    Staff
    Customer Support

    Hi there,

    Try this snippet here:

    add_filter( 'option_generate_blog_settings', 'lh_disable_search_featured_post' );
    function lh_disable_search_featured_post( $options ) {
        if ( is_search() ) {
            $options['featured_column'] = false;
        }
        return $options;
    }

    Adding PHP: https://docs.generatepress.com/article/adding-php/

    #478361
    Dushan

    Thank you, that worked great!

    #478487
    Leo
    Staff
    Customer Support

    No problem 🙂

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