Display custom post taxonomies

the_tags is only for the post_tag taxonomy, use the_terms to output custom taxonomies with a similar format:

the_terms(
    $post->ID,
    'tagevents',
    '<span class="tags-button">Tags : ',
    ' ',
    '</span><br />'
);