Title: seanpre's Replies | WordPress.org

---

# seanpre

  [  ](https://wordpress.org/support/users/seanpre/)

 *   [Profile](https://wordpress.org/support/users/seanpre/)
 *   [Topics Started](https://wordpress.org/support/users/seanpre/topics/)
 *   [Replies Created](https://wordpress.org/support/users/seanpre/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/seanpre/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/seanpre/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/seanpre/engagements/)
 *   [Favorites](https://wordpress.org/support/users/seanpre/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Members Membership Plugin] [Plugin: WP-Members] custom page template issue](https://wordpress.org/support/topic/plugin-wp-members-custom-page-template-issue/)
 *  Thread Starter [seanpre](https://wordpress.org/support/users/seanpre/)
 * (@seanpre)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-wp-members-custom-page-template-issue/#post-2322396)
 * wow! – great feedback and support Chad.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Members Membership Plugin] [Plugin: WP-Members] custom page template issue](https://wordpress.org/support/topic/plugin-wp-members-custom-page-template-issue/)
 *  Thread Starter [seanpre](https://wordpress.org/support/users/seanpre/)
 * (@seanpre)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-wp-members-custom-page-template-issue/#post-2322352)
 * 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();
       }
       ?>
       ```
   

Viewing 2 replies - 1 through 2 (of 2 total)