How to display shortcodes in custom fields
<?php
/*
WP does not support shortcodes inside custom fields
quick solution is to use:
*/
$values = get_post_custom_values('your_custom_field_key');
$shortcode_output = do_shortcode($values[0]);
print $shortcode_output;