I'm trying to alter the length of the services excerpt / description used by VC in Wordpress
I've used the function
function custom_excerpt_length( $length ) {
return 100;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
This however only allows an increase of post length from what I know? I'm unsure of the function that Services excerpt uses with VC
The exact class is sc_services_item_description but I'm not sure where it's called from