wow! – great feedback and support Chad.
Thanks for the reply Chad.
The two page templates are not displaying multiple posts or pages.
The one is an order form which has form elements linking to custom fields and some jQuery to handle the price calculations on the fly.
The other is a booking form, so both are serving their own unique content from within the respective template.
I used your suggestion above and it works thank you.
I put all the necessary code in a 3rd file and call this with an include if the user is logged in, if not I display the_content so your login form is displayed.
<?php
if ( is_user_logged_in() ) {
include "bookings-calculation.php";
} else {
the_content();
}
?>