Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #743484

    Hallo Kriesi
    IS it possible to manage the number of the words of the article’s preview and change its font?

    Before

    After

    Thanks
    Antonio

    #743547

    Hey Antonio!

    that depends, on where you add the excerpt space to your web site.
    That will be loaded based on that.
    If not, let us know with a link where you mean, so we can identify the element you use.

    Thanks a lot

    Regards,
    Basilis

    #743550

    Hei Basilis.
    You can see HERE

    Thanks
    Antonio

    #745019

    Hey!

    Please add following code to Functions.php file in Appearance > Editor

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

    Then add following code to Quick CSS in Enfold theme options under General Styling tab

    .avia-content-slider .slide-entry-excerpt {
        font-size: 20px;
        font-weight: bold;
    }

    Best regards,
    Yigit

    #745156

    Hi Yigit.

    Functions.php or functions-enfold.php ?

    At what point I add the code?

    Thanks
    Antonio

    #745161

    Hey!

    Functions.php file and you can add it to the bottom of it :)

    Cheers!
    Yigit

    #745163

    Thanks
    so much
    Antonio

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘manage the number of the words’ is closed to new replies.