Hi!
Im new to this plugin and i´m just trying to do something real simple, but can´t figure it out.
I want to display the category assigned to an event, and not have it link to a archive page for that category.
After some searching I found this:
<?php $terms = get_the_terms( $post->ID , 'tribe_events_cat' );
foreach ( $terms as $term ) {
echo $term->name;
}?>
<?php echo get_the_terms( $post->ID, 'tribe_events_cat'); ?>
But it outputs the word “Array” after each category name… so maybe my problem is elsewhere..
Anyone?