Hey rainmanne,
I’m wondering if you are using a custom single-event.php file for your theme. If so, can you make sure that the hooks listed in this FAQ are somewhere in the source code?
FAQ page
Let me know if you need more help!
– Craig
Hi Craig,
Thanks a lot for the response. I don’t think I use any custom files unless the theme inserted one. Where can I find it to check?
Found it myself (thank you, Google :)):
<?php while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<!-- Event featured image, but exclude link -->
<?php echo tribe_event_featured_image( $event_id, 'full', false ); ?>
<!-- Event content -->
<?php do_action( 'tribe_events_single_event_before_the_content' ) ?>
<div class="tribe-events-single-event-description tribe-events-content">
<?php the_content(); ?>
</div>
<!-- .tribe-events-single-event-description -->
<?php do_action( 'tribe_events_single_event_after_the_content' ) ?>
<!-- Event meta -->
<?php do_action( 'tribe_events_single_event_before_the_meta' ) ?>
<?php tribe_get_template_part( 'modules/meta' ); ?>
<?php do_action( 'tribe_events_single_event_after_the_meta' ) ?>
</div> <!-- #post-x -->
<?php if ( get_post_type() == Tribe__Events__Main::POSTTYPE && tribe_get_option( 'showComments', false ) ) comments_template() ?>
<?php endwhile; ?>
Have found the reason: Gutenberg Extension for The Events Calendar does not play together with the registration plugin.
Hey rainmanne,
Ahh I suppose I could have mentioned this as well. I noticed this awhile back and asked the Modern Tribe team about the hooks. They seem to have plans on adding support for the hooks back into the template in some capacity for the final version. Here is my question on github.com:
https://github.com/moderntribe/events-gutenberg/issues/334