Hi, I am using the blogpost component on my page, and I want to remove the comment count, title of the blog
– I want to remove the comment count, the title of the blog “logbuch”
– make the date smaller
– want to show more abstract text or remove it completely
thanks,
-rolf
Hey rolfroyce,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.slide-meta-comments, .slide-meta-del,span.blog-categories {
display: none!important;
}
.slide-meta-time {
font-size: 12px!important;
}
Then please add following code to Functions.php file in Appearance > Editor and adjust as needed
add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
function avia_change_postgrid_excerpt_length($length)
{
$length = 100;
return $length;
}
Best regards,
Yigit
thanks yigit that works. one question: how could i remove the excerpt completely – when i set the length to zero it still dispalys a few characters.
Is there a CSS hack for hiding the excerpt in a css override instead of adding code to functions.php?