yes that’s no problem with the snippet looks like my Feed now like this.
http://quadtreffen.info/termine/feed/
http://fs1.directupload.net/images/150223/9vnoa82h.png
where I would like to have this info I have highlighted in the screenshot
and here the Code in my functions
<?php
/* Working on adding Tribe Events info to RSS content */
function tribemeta_in_feed($content) {
if(is_feed()) {
$post_id = get_the_ID();
$output .= '<p><strong>Beginn:</strong> ' . tribe_get_start_date() . '</p>';
$output .= '<p><strong>Ende:</strong> ' . tribe_get_end_date() . '</p>';
$output .= '<p><strong>Wo:</strong> ' . tribe_get_venue() . '</p>';
$output .= '<p><strong>Adresse:</strong> ' . sp_get_full_address () . '</p>';
$content = $content.$output;
}
return $content;
}
add_filter('the_content','tribemeta_in_feed');
?>
Hope I have explained better now
thank you