[Resolved] Featured Posts Grid

Home Forums Support [Resolved] Featured Posts Grid

Home Forums Support Featured Posts Grid

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1283742
    JOAQUIM GALANTE

    Hi, have a chance the featured posts grid only appear on the page 1 ? to avoid repetition.

    #1283883
    David
    Staff
    Customer Support

    Hi there,

    edit the Header Elements > Display Rules. Change the Location to Front Page

    #1283893
    JOAQUIM GALANTE

    Thanks David, the location is front page but the grid appears in all pages ๐Ÿ™

    #1283918
    David
    Staff
    Customer Support

    Sorry my bad… add this PHP Snippet to your Site:

    add_filter( 'generate_header_element_display', function( $display ) {
        if ( is_paged() ) {
           $display = false;
        }
    
        return $display;
    } );

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

    #1283950
    JOAQUIM GALANTE

    Thanks David, on target ๐Ÿ™‚

    #1283963
    David
    Staff
    Customer Support

    Glad to be of help

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