Tagged: 

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

    Hi,

    1-) i wanna remove category name that appears below the post. How can i solve this?
    2-) i wanna increase number of characters in homepage(post quotation) How can i solve this?

    Thanks in advance.

    #610784
    #610831

    Hi!

    which element are you using to your homepage?
    Can we please give a look to your web site?
    You can always write it to the private data area.

    Thanks a lot

    Best regards,
    Basilis

    #610899

    Merhabalar!

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

    .blog-categories {
        display: none !important;
    }

    and then 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;
    }

    Cheers!
    Yigit

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