Hey Mate,
Ok well I don’t use this plugin any more (I use ‘Custom Content Type Manager’ which is amazing for creating my own ‘Types’) but ill see if I can help you out anyway.
Can you copy and paste your entire page template file? It should look something similar to this:
<?php
/**
Template Name: OurEvents
*/
get_header();
/*Build an array variable to hold ALL of our event data */
/*Change the ‘ourevent’ to your custom post type*/
$args = array(
‘post_type’ => ‘ourevent’,
‘posts_per_page’ => -1
);
/*Get all the posts */
$posts = get_posts($args);
/*Loop through all of the posts in the custom post type*/
foreach ( $posts as $post )
{
/*Set up the post data */
setup_postdata($post); ?>
<h3>”<?php the_title();?>”</h3>
<!– we create a variable and capture the ‘EventLocation’ in it, change this to the NAME of your individual variables that your trying to capture –>
<p>
<?php $EventLocation = get_post_meta($post->ID,’EventLocation’,true);
echo $EventLocation ?>
</p>
<p>$EventDescription = get_post_meta($post->ID,’EventDescription’,true);
echo $EventDescription ?></p>
} ?>