Viewing 1 reply thread
You must be logged in to reply to this topic.
Hi,
I want to have the full bio (only about 400-500 words) for each single staff member on the About Us page, rather than having the excerpt limited to 200 characters. I edited the staff.php file but that seemed to be the limit.
I just want the main text from the staff member to be shown rather than an excerpt.
Also, if the excerpt does have to be shown and the word count increased, how do I present it without the solid block of text, as the excerpt seems to strip out all the html.
Many thanks! Loving this theme!
Rob
Hello,
Sorry for the late reply.
To display the content of the staff member, rather than the excerpt, go to file staff.php and find this line:
$output .= '<p>'.codeless_text_limit(get_the_excerpt(), 25).'</p>';
Replace with this:
$output .= '<p>'.codeless_text_limit(get_the_content(), 500).'</p>';
Best regards!
You must be logged in to reply to this topic.