Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #608240

    Hi!

    I need to make several changes to the slider article on our home page:

    1) do not show the number of comments : I have tried adding the code you posted here, but it does not work.

    2) make the excerpts text longer : have tried adding the code you suggested here, but it does not work.

    Many thanks for your help,

    Daria

    #609293

    Hey Fiorilla!

    Thank you for using Enfold.

    1.) Please use this to remove the comments info:

    .slide-meta-comments, .slide-meta-comments + .slide-meta-del {
        display: none !important;
    }

    2.) Use this code instead:

    add_filter('avf_postgrid_excerpt_length','avf_postgrid_excerpt_length_mod', 10, 1);
    function avf_postgrid_excerpt_length_mod($length) {
       $length = 300;
       return $length;
    }

    Best regards,
    Ismael

    #610319

    Hi Ismael,

    I have replaced the code I had with the two you mentioned, but there is absolutely no change… Would you mind having a second look?

    Thank you,

    Fiorilla

    #610329

    Hey!

    As mentioned here – https://kriesi.at/support/topic/header-not-working-correctly-in-chrome/#post-610327 you added the code to Quick CSS field. I moved it to functions.php file. Please review your website now

    Regards,
    Yigit

    #611373

    Oh, perfect! Thanks so much, I misunderstood what needed to be done.

    Fiorilla

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Styling the article slider’ is closed to new replies.