finally I used this code in Functions.php. Works perfect for me:
add_filter('oum_location_bubble_content', function ( $content, $location ) {
$website = oum_get_location_value('Webseite', $location['post_id']);
// extend bubble content
$content .= '<div class="oum_location_custom_fields"><div class="oum_custom_field" style="font-size: 14px; font-weight: normal; padding-left: 15px; padding-right: 15px;">';
$content .= '<strong>Webseite:</strong><br>';
$content .= '<a href="' . $website . '" target="_blank">' . $website . '</a>';
$content .= '</div></div><br>';
return $content;