Hi @behandlung ,
I would like to help you resolve the issue with the title not displaying on the single event page.
Can you please confirm whether you have the template file event-single.php
in your theme or child theme?
I checked our test site, and the title is functioning as expected on the single event page.
You can see it here: https://share.zight.com/z8u9AD67.
It appears that the issue is specific to your site. Verifying the presence of the event-single.php
template and reviewing any recent changes that may have caused it will help us better debug the issue and provide an optimal solution.
Looking forward to your response. Thank you! 🙂
Hi Rohit,
Thanks for your quick reaction!
I can’t find a event-single.php
I have searched the following files:
wp-content/themes/phlox-child/
wp-content/themes/phlox-pro/
wp-content/themes/phlox-pro/templates/
wp-content/plugins/quick-event-manager/
I can only find the single.php or page.php
best, Barbara
check your single.php ( event will use it by default) easiest way is do a blog post, does the title show?
And / Or share the single.php here for review.
Hi Alan,
if I do a normal Blog Post, the title is shown.
This is the single.php
<?php
/**
* The Template for displaying all single posts
*
*
* @package Auxin
* @author averta (c) 2014-2024
* @link http://averta.net
*/
get_header(); ?>
<main id="main" <?php auxin_content_main_class(); ?> >
<div class="aux-wrapper">
<div class="aux-container aux-fold">
<div id="primary" class="aux-primary" >
<div class="content" role="main" >
<?php
if ( ! ( function_exists( 'auxin_theme_do_location' ) && auxin_theme_do_location( 'single' ) ) && ! ( function_exists( 'elementor_theme_do_location' ) && elementor_theme_do_location( 'single' ) ) ) {
$is_pass_protected = post_password_required();
if ( have_posts() && ! $is_pass_protected ) {
get_template_part('templates/theme-parts/single', get_post_type() );
comments_template( '/comments.php', true );
} elseif( $is_pass_protected ) {
echo get_the_password_form();
} else {
get_template_part('templates/theme-parts/content', 'none' );
}
}
?>
</div><!-- end content -->
</div><!-- end primary -->
<?php get_sidebar(); ?>
</div><!-- end container -->
</div><!-- end wrapper -->
</main><!-- end main -->
<?php get_sidebar('footer'); ?>
<?php get_footer(); ?>