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

    I am setting up a page where I am using the Avia layout builder > content elements > masonry

    Then I’m selecting post format > quote.

    The amount of text that is displayed when I do this is really small. Where might I go to change this to a larger character amount to view?

    Thanks for your help!

    #1009621

    Hey redping,

    Try adding this to functions.php:

    add_filter(‘avf_masonry_excerpt_length’,’avia_change_masonry_excerpt_length’, 10, 1);
    function avia_change_masonry_excerpt_length($length)
    {
    $length = 300;
    return $length;
    }
    

    Best regards,
    Jordan Shannon

    #1009660

    Thank you! Is there code that I can also add to have elements like bold still be in the excerpt? I notice this is all stripped out?

    Also, I’d like to remove the image from growing in hover for these pages.

    #1009680

    Hi,

    Please provide a link to the site/page in question so I can inspect this further.

    Best regards,
    Jordan Shannon

    #1009682

    I added the link to the private content. I would like the images not to change size on hover.
    I also would love to style content within the expert at lest minimally. I have noticed that all html is stripped out including image tags and div tags.

    #1009687

    Hi,

    I’m not sure what you mean for the text excerpt. Are you wanting it to be bold?

    Best regards,
    Jordan Shannon

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