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!
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
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.
Hi,
Please provide a link to the site/page in question so I can inspect this further.
Best regards,
Jordan Shannon
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.
Hi,
I’m not sure what you mean for the text excerpt. Are you wanting it to be bold?
Best regards,
Jordan Shannon