Won't fix
Map pop-ups accept HTML markup for their content, and shortcodes can be used to output field values.
But it is not possible to use a shortcode to provide the value for an HTML attribute, e.g. this won’t work:
<a href="[types field='link-url'][/types]">Link...</a>
A solution would be to register a custom shortcode that generates the HTML element as required, e.g.
add_shortcode('custom-link', function () { global $post; $url = get_post_meta( $post->ID, 'wpcf-custom-url', true ); $output = "<a href='$url'>Link to $post->post_title</a>"; return $output; });
Then you could use that to output the whole link tag:
[custom-link]