This is a recent issue, as I did not encounter it before Christmas, when I last updated a Page.
How do I edit or create a podcast episode on a Page?
]]>Today when I try add episode with url ( manual ), there is an error it’s say “Uncaught ReferenceError: FeedSlug is not defined”.
please help.
Thank you, Regards.
]]>Well… let’s go.
My podcast was created from blubrry powerpress app and it was going very well. But when we reached the 11th episode it started to disappear the first episodes i’ve posted. So now i can post only 10 episodes, if i post more the olders are going to disappear.
Someone knows how to fix it? It that a bug or some configuration?
Thanks for your attention!
]]>My podcast has had some troubles with uploading my most current episode onto Apple, Castbox, Spotify and even Google Play.
I contacted iTunes as this has been a reoccuring issue, and they seme to say its an issue with my RSS feed (showing that my latest episode 30 is not displaye din my RSS feed).
I did Cast Feed Validator and also don’t see the episode published there, although it is published on my website.
I published the original post for episode 30 on July 14th with no success (deleted my cache, refreshed apple, etc). I thought maybe it was the post itself so I republished the post today (July 20th), however still don’t see it on my feed when validated.
Can someone help me with this issue?
My RSS feed: https://thegreenbelle.com/feed/podcast
Apple Podcast: https://podcasts.apple.com/ca/podcast/the-green-belle/id1455548657
My website: https://thegreenbelle.com/
Because this issue has been reoccurring all of July and end of June, I have tried numerous solutions such as WP Cache – deleting my cache after publishing each episode, etc. and this am facing the same issues.
]]>My issues is that my listeners are contacting me asking where my episodes are, and even though they are technically published, no one can see them.
How can I have my podcast episodes upload within a couple hours to these podcast platforms like they used to?
My RSS feed:https://thegreenbelle.com/feed/
Apple Podcast: https://podcasts.apple.com/ca/podcast/the-green-belle/id1455548657
]]>The RSS feed with /podcast added to the end shows all my episodes including the missing 2 when validated on castfeedvalidator.com (for a total of 25 episodes) and is associated with my Powerpress plugin, however my general RSS feed is missing the last 2 episodes (showing only 23).
The current RSS feed that is submitted to iTunes is: https://thegreenbelle.com/feed/ (the one with the 2 missing episodes on castfeedvalidator.com as well). I didn’t realize this at first but I don’t want to change my RSS feed in iTunes with the fear that I lose my reviews and ratings associated with my podcast (I currently have 24 reviews and 5 star rating.
This is my page on apple podcast (iTunes) showing that I only have up to episode 23, even thought I have up to 25 uploaded on my website: https://podcasts.apple.com/ca/podcast/the-green-belle/id1455548657
My blog is showing all the blogposts for each podcast episode and I followed the creation of my blogpost correctly: https://thegreenbelle.com/
I haven’t added any additional plug-ins. I honestly didn’t even know iTunes (and Castbox) wasn’t using the proper RSS feed because they would constantly update with episodes until last Thursday (June 20th)
Can anyone help me? P.S. I dont know much about RSS feeds and how to change them)
Thanks
]]>I have created on a local environment a plugin to register a new custom post type in my WordPress called “Podcast”.
I would like to have this specific custom post type to have a second blog that shows only the entries that contain an episode of the podcast.
The only problem I have found is that I can not find a way to show the “Podcast episode” box when editing the Custom Post Type “Podcast” entries registered by my plugin.
I see these options in the standard entries and pages, but not in the Custom Post Type entries.
I have also checked the “Screen options” tab and there is no option to show the “Podcast episode” box
This is the plugin code that registers my custom post type
function create_cpt_podcast() {
$tags = array(
‘name’ => _x( ‘Podcast’, ‘post type general name’, ‘podcast-post-type’ ),
‘singular_name’ => _x( ‘Podcast’, ‘post type singular name’, ‘podcast-post-typen’ ),
‘menu_name’ => _x( ‘Podcast’, ‘admin menu’, ‘podcast-post-type’ ),
‘name_admin_bar’ => _x( ‘Podcast’, ‘add new on admin bar’, ‘podcast-post-type’ ),
‘add_new’ => _x( ‘A?adir nuevo podcast’, ‘book’, ‘podcast-post-type’ ),
‘add_new_item’ => __( ‘A?adir nuevo podcast’, ‘podcast-post-type’ ),
‘new_item’ => __( ‘Nuevo podcast’, ‘podcast-post-type’ ),
‘edit_item’ => __( ‘Editar podcast’, ‘podcast-post-type’ ),
‘view_item’ => __( ‘Ver podcast’, ‘podcast-post-type’ ),
‘all_items’ => __( ‘Todos los podcast’, ‘podcast-post-type’ ),
‘search_items’ => __( ‘Buscar podcast’, ‘podcast-post-type’ ),
‘parent_item_colon’ => __( ‘Podcast padre:’, ‘podcast-post-type’ ),
‘not_found’ => __( ‘No podcasts encontrados.’, ‘podcast-post-type’ ),
‘not_found_in_trash’ => __( ‘No hay podcast encontrados en la papelera.’, ‘podcast-post-type’ )
);
$options = array(
‘public’ => true,
‘label’ => ‘Podcast’,
‘labels’ => $tags,
‘menu_position’ => 5,
‘menu_icon’ => ‘dashicons-megaphone’,
‘has_archive’ => true,
‘hierarchical’ => false,
‘capability_type’ => ‘post’,
‘rewrite’ => true,
);
register_post_type(‘Podcast’,$options);
}
add_action(‘init’,’create_cpt_podcast’);
Thanks for your help.
]]>