The template is here:
.../wp-content/plugins/buddypress-simple-events/templates/single-event.php
You can make any needed changes to that file or create a template overload by following the directions at the top of the file.
-
This reply was modified 8 years, 1 month ago by
shanebp.
I have uploaded this already known file to my kippis theme but as I am not a programmer I don’t know what to do 🙁
Look at the single.php or equivalent in your theme.
And adjust single-event.php to use the same approach.
single-post.php is below.
All what I tried to do was wrong 🙁
<?php
get_header();
if (!$kippis_is_smartphone) get_sidebar(‘left’);
?>
<div id=”content”>
<?php while (have_posts()) : the_post(); ?>
<nav id=”nav-single”>
<span class=”nav-previous”><?php previous_post_link(‘%link’,__(‘<span class=”meta-nav”>←</span> Previous’,’kippis’)); ?></span>
<span class=”nav-next”><?php next_post_link(‘%link’,__(‘Next <span class=”meta-nav”>→</span>’,’kippis’)); ?></span>
</nav><!– #nav-single –>
<?php endwhile; ?>
<?php
while (have_posts()) {
the_post();
get_template_part(‘content’,’single’ );
if (comments_open()) {
comments_template(”,true);
}
}
?>
</div><!– content –>
<?php
if ($kippis_is_smartphone) get_sidebar(‘left’);
get_sidebar(‘right’);
get_footer();