Comments nyehouse started the conversationJuly 8, 2021 at 8:15pmHi there. Post excerpts (on individual post pages, not home page) seem to be hidden. Other Layout Options > Remove Post Excerpt is already turned off. I can't figure out how to make the excerpts show. 2,615PenciDesign repliedJuly 9, 2021 at 4:02amHi,Do you mean posts all on the Related Posts section? This section only shows the title, not show post exceprt.But if you want to add the except content, please download the attachment file and overwrite the path: inc/templates/related_posts.phpRegards,PenciDesign.nyehouse repliedJuly 9, 2021 at 4:42pmNo, I meant regular posts. The excerpt isn't showing up.nyehouse repliedJuly 9, 2021 at 4:51pmFor example on https://www.onthestrip.com/trending/resorts-world-sets-dates-for-inaugural-vegas-residencies/the excerpt should be showing but it's not. PenciDesign replied privately nyehouse replied privately 2,615PenciDesign repliedJuly 9, 2021 at 6:32pmHi,By default, the custom excerpt only displays on the archive/category/tags/search page.I've added this on a single page by adding the custom Snippet. add_filter('the_content','nyehouse_add_custom_excerpt_to_single_post');function nyehouse_add_custom_excerpt_to_single_post($content) { $excerpt = ''; if ( has_excerpt() && is_single() ) { $excerpt = '<h4>'.get_the_excerpt().'</h4>'; } return $excerpt.$content;}Please clear your site cache to take effect.Regards,PenciDesign.nyehouse repliedJuly 9, 2021 at 6:43pmThank you so much! Sign in to reply ...
Hi there. Post excerpts (on individual post pages, not home page) seem to be hidden. Other Layout Options > Remove Post Excerpt is already turned off. I can't figure out how to make the excerpts show.
Hi,
Do you mean posts all on the Related Posts section? This section only shows the title, not show post exceprt.
But if you want to add the except content, please download the attachment file and overwrite the path:
Regards,
PenciDesign.
No, I meant regular posts. The excerpt isn't showing up.
For example on https://www.onthestrip.com/trending/resorts-world-sets-dates-for-inaugural-vegas-residencies/
the excerpt should be showing but it's not.
Hi,
By default, the custom excerpt only displays on the archive/category/tags/search page.
I've added this on a single page by adding the custom Snippet.
Please clear your site cache to take effect.Regards,
PenciDesign.
Thank you so much!