On our homepage, we would like to have blog excerpts with a read more link. However, it only shows the first sentence. Is there a way to show more than one sentence in the excerpt? And also on the blog posts, we have it set to not show the featured image in the article. But it still shows a pencil icon on the top of the page. Any way to get rid of that?
Hey WCWL1650,
Could you post a link to the site in question so that we can take a closer look please?
Best regards,
Rikard
I have enclosed the address and login details in the private content section.
Hi,
Thank you for the update.
Please add this code in the functions.php file.
add_filter('avf_postgrid_excerpt_length','avf_postgrid_excerpt_length_mod', 10, 1);
function avf_postgrid_excerpt_length_mod($length)
{
$length = 200;
return $length;
}
Default value is 60.
P.S We would like to apologize for the delay. We normally respond within 24 hours but in the wake of the latest theme update, we have received more inquiries than usual. Please be patient while we go through the rest of the queue. Thank you for your understanding.
Best regards,
Ismael