Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #746901

    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

    #746926

    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

    #747974

    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?

    #747975

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .avia-content-slider .slide-entry-excerpt { display: none; }
    

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.