For anyone that is interested here is what I did to get my excerpt length limited by characters instead of by words.
In my functions.php I added the following:
// Limit except length by # of characters
function get_excerpt( $count ) {
$permalink = get_permalink($post->ID);
$excerpt = get_the_content();
$excerpt = strip_tags($excerpt);
$excerpt = substr($excerpt, 0, $count);
$excerpt = substr($excerpt, 0, strripos($excerpt, " "));
$excerpt = '<p>'.$excerpt.'... <a href="'.$permalink.'" class="more-link">Read More</a></p>';
return $excerpt;
}
Change the read more link if you want to, remove the class, add your own class… whatever. Then Call the above function by adding this code in your /wp-content/themes/pro/framework/views/global/_content-the-excerpt.php
REPLACE THIS TAG:
<?php the_excerpt(); ?>
WITH THIS TAG: (Change number to desired excerpt length)
<?php echo get_excerpt(111); ?>
Now you are all set! Enjoy your custom character excerpt length!