Hello @bcg62,
It was great talking with you today and I am glad we were able to solve the problem you were having. If you have a moment, we would greatly appreciate it if you could give PowerPress a review! Thanks!
For those who are looking for a solution to this problem, there was a define in the wp-config.php that specified the post types that PowerPress would use for podcasting. It did not include the type “post” which caused PowerPress to not add the custom podcast channels to the default post edit pages.
define('POWERPRESS_POST_TYPES', '...');
We will be adding new code to PowerPress in the next release to make sure “post” is always in the post type list. We will also print a message in the “Post Type Podcasting” screen if the define is set and what values it is set to.
The POWERPRESS_POST_TYPES define is not necessary in most cases. In early versions of PowerPress this define allows podcasters to set their own post types for podcasting in their wp-config.php. As long as you create your post types with the correct post type of “post”, PowerPress does not need this define present. It is only useful if you want to use a post type that is not of post type “post”.