Archived topic
Featured Posts Grid
5 replies · Started by JOAQUIM GALANTE on May 14, 2020
Viewing posts 1–6 of 6
Hi, have a chance the featured posts grid only appear on the page 1 ? to avoid repetition.
Hi there,
edit the Header Elements > Display Rules. Change the Location to Front Page
Thanks David, the location is front page but the grid appears in all pages :(
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;
} );
Thanks David, on target :)
Glad to be of help
This archived topic is closed to new replies.