cool thanks for the replies guys.
Sorry but I worded my question really bad. What I should’ve said is how to fix broken urls for the following pages… my-bookings, locations, categories, tags
I have a custom WordPress theme and if I don’t put a post loop in page.php e.g.
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
then my-bookings, locations, categories, tags pages are blank. I thought since the the post is echoing the_content();. Maybe I could echo the content manually on page.php?
I already have single-event.php</e> and it is displaying everything correctly but just can’t get my-bookings page showing after clicking Manage my bookings link and Search functionality working.