You will need to edit the shortcode to adjust the output.
The file is located /flexform/includes/shortcodes.php
the function you need to change is called: social_icons
Locate this line:
$social_icons .= '<li class="youtube"><a href="http://www.youtube.com/user/'.$youtube.'" target="_blank">YouTube</a></li>'."\n";
And replace with this:
$social_icons .= '<li class="youtube"><a href="'.$youtube.'" target="_blank">YouTube</a></li>'."\n";
This will allow you to use a full URL of your desire, such as http://www.youtube.com/channel/UCYmkFbe9SM0PnYjRt_OrljA
– David.