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

    I need to extend the length of the titles of the articles with the widget “Blog Posts”. In this moment the title is cut after the first half and it is followed by the three points (…). I need the full title to be visible. I succeeded in extending the extract of the article with the following code:

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

    . I need a similar thing, to be used for the title instead of the extract.

    #994388

    Hi,

    Can you please post a link to your page and a screenshot showing the changes you would like to make? You can upload your screenshots on imgur.com or Dropbox public folder and post the links here

    Cheers!
    Yigit

    #994774

    Sorry my fault, it was only the content of the article that was cut in half and not the title. The title is seen in full.
    Thanks anyway

    #994784

    Hey!

    Great, glad it works now :)

    Best regards,
    Peter

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