Hi!
The read more tag won’t work but I wrote you a custom code to shorten your team member content automatically.
If you want to use it, open up the file neihgborhood > includes > swift-framework > page-builder > builder > shortcodes > team.php
and replace the whole content with http://pastebin.com/F7UfZaF8
What I did is I added a custom function called custom_content
function custom_content($limit) {
$content = explode(' ', get_the_content(), $limit);
if (count($content)>=$limit) {
array_pop($content);
$content = implode(" ",$content).'...';
} else {
$content = implode(" ",$content);
}
$content = preg_replace('/\[.+\]/','', $content);
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
return $content;
}
which will allow you to cut your content for the member bio by calling custom_content(10) – where 10 stands for the number of words you want to display.
Ideally we would place the function in the functions.php file, but we don’t want you to edit too many files 🙂
Cheers