Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi there!

    Thanks for stopping by! If you’re looking to remove the title and schedule information at the top of a single event, this is the code block you’re looking for:

    <!-- Notices -->
    <?php tribe_the_notices() ?>
    
    <?php the_title( '<h1 class="tribe-events-single-event-title">', '</h1>' ); ?>
    
    <div class="tribe-events-schedule tribe-clearfix">
        <?php echo tribe_events_event_schedule_details( $event_id, '<h2>', '</h2>' ); ?>
        <?php if ( tribe_get_cost() ) : ?>
            <span class="tribe-events-divider">|</span>
            <span class="tribe-events-cost"><?php echo tribe_get_cost( null, true ) ?></span>
        <?php endif; ?>
    </div>

    You can comment this section out to hide it by enclosing the portion below <!-- Notices --> in another set of <!-- and -->, or you can simply delete it if you’re sure you’ll never need it again.

    I hope that helps–let us know if you should have any other questions!

    Thread Starter JozefMacz

    (@jozefmacz)

    It worked. Thanks a lot

    Hey glad to see the issue is now resolved 🙂

    I’m marking this topic as resolved, if you need help with anything else please create a new thread and we will be happy to assist you.

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

The topic ‘Editing meta-data on single-event.php’ is closed to new replies.