Hi how do i remove the following meta data from showing up on the events page?


Jade Deverill
Hi Jade,
This will be the theme that’s adding that in.
You can copy your theme’s single.php
and call it single-event.php
and then remove the part displaying the metadata. Then add this line where you want the event details to appear:
<?php eo_get_template_part('event-meta','event-single'); ?>

Stephen Harris
Hi that doesn’t seem to work. It seems to affect –
the stuff below ‘event details’ and below. where as I want to remove –
Posted On 19 Nov 2016
By Jade
In
This is the contents of the single.php in my theme –
<?php
get_header();
$col= 'col-md-12';
if ( is_active_sidebar( 'sidebar' ) ) {
$col = 'col-md-8';
}
?>
<div class="row">
<div id="content" class="site-content <?php echo $col; ?>" role="main">
<?php /* The loop */ ?>
<?php if(have_posts()){ while ( have_posts() ) { the_post(); ?>
<?php get_template_part( 'post-templates/content', get_post_format() ); ?>
<?php zee_post_nav(); ?>
<?php blog_comments(); ?>
<?php } } ?>
</div><!--/#content -->
<?php get_sidebar(); ?>
</div>
<?php get_footer();

Jade Deverill
Hi Jade,
The meta data is probably coming from the post-templates/content
template. You can either remove it from there (but that will effect non-event posts) or create an edited copy and include that from your single-event.php
.

Stephen Harris