In response to Chris_Homan:
Open wpfp-page-template.php in the plugin folder.
Look for this line:
// custom post type support can easily be added with a line of code like below.
// $qry['post_type'] = array('post','page');
Delete the // in front of $qry[‘post_type’] and add your post type to the array. Below is an example:
// custom post type support can easily be added with a line of code like below.
$qry['post_type'] = array('post','page', 'YOUR_POST_TYPE');
Open wpfp-page-template.php in the plugin folder.
Look for this line:
// custom post type support can easily be added with a line of code like below.
// $qry['post_type'] = array('post','page');
Delete the // in front of $qry[‘post_type’] and add your post type to the array. Below is an example:
// custom post type support can easily be added with a line of code like below.
$qry['post_type'] = array('post','page', 'YOUR_POST_TYPE');