Please activate your child theme, supplied in the main zip file from ThemeForest.
In the child theme functions.php file add the below code and change `Your New Title` to your desired text:
if (!function_exists(‘sf_custom_related_portfolio_heading’)) {
function sf_custom_related_portfolio_heading() {
echo ‘Your New Title’;
}
add_filter ( ‘sf_related_projects_heading’ , ‘sf_custom_related_portfolio_heading’ );
}