• Resolved rainmanne

    (@rainmanne)


    I’ve activated the plugin but the Register button doesn’t show up. If I put the short code on a separate page, I can see the button. Any help?

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author roundupwp

    (@roundupwp)

    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

    Thread Starter rainmanne

    (@rainmanne)

    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?

    Thread Starter rainmanne

    (@rainmanne)

    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; ?>
    Thread Starter rainmanne

    (@rainmanne)

    Have found the reason: Gutenberg Extension for The Events Calendar does not play together with the registration plugin.

    Plugin Author roundupwp

    (@roundupwp)

    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

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Registration button doesn’t show up’ is closed to new replies.