Change wording of project details
<?php
/**
* Change wording of project details
*/
add_filter('frameshift_project_details_client', 'custom_project_details_client');
function custom_project_details_client($output) {
// Custom Code
$output = __( 'Project Partner', 'frameshift' ) . ':' ;
return $output;
}