• mvogel1989

    (@mvogel1989)


    Hello,

    Does anyone know how to remove all featured topics/blocks except the first?

    Thanks in advance.

    Mark

Viewing 1 replies (of 1 total)
  • WEN Solutions

    (@wen-solutions)

    There is no any options to remove the other remaining section. All the section are managed from front-page.php. If you are familiar with php codes, you can customize theme as required.

    Note: Child theme is recommended to customize theme.

    If you are not aware about php add the below css code. It will hide all section as your required.

    .home-featured-block.clearfix {
        display: none;
    }
    
    .mid-section-ads {
        display: none;
    }
    
    .home-featured-block.block-4 {
        display: none;
    }
    
    .single-col.clearfix {
        display: none;
    }
    
    .home-media-gallery {
        display: none;
    }

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘Only need slider first featured block’ is closed to new replies.