Homepage help - remove excerpts and columns

I’m trying to make two changes to the current homepage template:

  • removing excerpts and read more (showing full posts)
  • and removing the columns toward the bottom of the page

I have don’t have this excerpts option selected in customize yet they still display.

Also, what template is this page using?

Thanks.

Hi @myklroventine,

I hope you are well today and thank you for your questions.

– removing excerpts and read more (showing full posts)

Try achieving this by unchecking the theme option “Show post excerpts?” as shown in the attached screenshot.

– and removing the columns toward the bottom of the page

I think you don’t want to display posts in grid but in the full width.

If this is so then you can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS


.blog.home #page article.post {
    width: 100%;
    padding: 0;
}

.blog.home #page article.post .read-more, 
.blog.home #page article.post .entry-footer {
    display: block;
}

.blog.home .page-1 article.post .post-inner-content {
    padding: 0 0 50px;
    margin-bottom: 35px
}

.blog.home .page-1 article.post .post-inner-content {
    border-bottom: 1px solid #dedede;
}
I have don’t have this excerpts option selected in customize yet they still display.

Then please select this option save the settings and unselect & save that option again.

Also, what template is this page using?

There isn’t any separate template to display that page but the content of this page is displayed by template part file content.php

Best Regards,
Movin