Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #399525

    Hello

    I have the number of characters text of the 3 new posts show in Enfold home page that is reduced compared to those characters of the article

    for example:
    the entire news article has 400 characters, but in the preview in home page the characters are only 100. In the post I there are not any “read more”

    How can I adjust the number of the character in home page ?

    Thanks, Italo

    #399732

    Hi Portanuova!

    Please try adding 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 = 200;
       return $length;
    }

    If that does not work, please post the link to your website

    Best regards,
    Yigit

    #399829

    Thanks Yigit
    it is ok !

    Can You tell me if it is possible to hide (under the 3 images in home page) the title of the post, the text, and the data (es: dicembre 19, 2014) The site is: http://www.istitutofeldenkrais.it/

    Thanks, Italo

    #399997

    Hi!

    Do you want to hide the title and meta data only on the home page? If so, please add this to your Quick CSS:

    page-id-7 h3.slide-entry-title, page-id-7 div.slide-meta{
    display:none !important;
    }
    

    Regards,
    Rikard

    #400483

    Hello Rikard

    can You tell me the name and the link (or where I can find it)
    of the file Quick css ?

    Thanks, Italo

    #400492

    Hi!

    You can find Quick CSS field in Enfold theme options > General Styling tab at the bottom – http://kriesi.at/documentation/enfold/custom-css-and-quick-css/

    Regards,
    Yigit

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