Hi,
I need to set a Maximum Length of the content in the Category Arquive Pages. I can’t set to show only the excerpt because there is some fields that I want to show on that pages. I must have full content option in the category arquive pages instead excerpt, but I must set a Maximum Length on that index pages.
Can you please advise? I send image attached.
Thanks,
Frederico
Hey PT0060,
To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
Best regards,
John Torvik
Hi,
Sorry for the late reply!
Please 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;
}
Best regards,
Yigit
Hi,
You are not using the excerpt on the page you have send us, that is why the content is not cuted!
If you change – it will work properly.
Best regards,
Basilis