Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support tristan083

    (@tristan083)

    Hi @viche ,

    Thank you for reaching out.

    What you’re trying to accomplish doesn’t seem to have something to do with the The Events Calendar: Category Colors plugin. But, by using this plugin, it will highlight the events in the month view according to the category color of your choosing, as show in the screenshots here.

    Alternatively, you can use the filer snippet below to append the event category after the event title of the month view.

    add_action( 'tribe_template_after_include:events/v2/month/calendar-body/day/calendar-events/calendar-event/title', function() {
        global $post;
        ?>
        <ul class='tribe-event-categories'>
            <?php echo tribe_get_event_taxonomy( $post->ID ); ?>
        </ul>
        <?php
    } );
    Thread Starter viche

    (@viche)

    Hi!

    You are absolutely right that what I was trying to accomplish doesn’t seem to have something to do with the The Events Calendar: Category Colors plugin. 🙂

    After Googling like a tornado I ended up in this support forum. 🙂

    But thank you so very much for solving my problem anyway! You are a true Go-to guy! Cheers!

    • This reply was modified 1 year, 11 months ago by viche.
    Plugin Support tristan083

    (@tristan083)

    You’re welcome, @viche !

    If you have some time to review, that would be amazing!
    https://wordpress.org/support/plugin/the-events-calendar-category-colors/reviews/

    I’d be closing this thread, and please do not hesitate to bump a new thread on our way. This is for us to track down topics/issues efficiently and for us to follow the WordPress Forum Guidelines.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Add category tags to month view?’ is closed to new replies.