At present there is no option to add external url for team members .
Pls modify file plugins/livemesh-tools/includes/register-post-types.php line no:116 to
and see if it helps.
register_post_type('team', array(
'labels' => $labels,
'public' => true,
'show_ui' => true,
'hierarchical' => false,
'publicly_queryable' => true,
'query_var' => true,
'exclude_from_search' => true,
'show_in_nav_menus' => false,
'menu_position' => 20,
'has_archive' => false,
'menu_icon' => LM_URI . '/assets/images/admin/users.png',
'rewrite' => false,
'supports' => array('title', 'editor', 'thumbnail', 'page-attributes')
));