Sorry for the delayed reply. Holidays took precendent and have been playing catch up.
Okay, so you already use the slow, “/shows” and we overwrite that like you see on our demo site: https://demo.radiostation.pro/shows/.
I have asked Tony Hayes, our Lead Dev, to reach out here on the thread and direct you to a solution.
First, did you turn off “Automatic Display”? for the Shows Archives Pae?
Second, did you create a new page and use the drop down to target that page with the Shows Archive?
WordPress does this by default when a custom post type is registered with has_archive set, which Radio Station does. You can change this behaviour using a filter:
add_filter( 'radio_station_post_type_show', 'custom_show_post_type_filter' );
function custom_show_post_type_filter( $post_type ) {
$post_type['has_archive'] = false;
return $post_type;
}
Alternatively if you do want the show archive somewhere else just give it another slug instead of the default 'shows'
Looks like this issue has been resolved. Closing for now. Please open another ticket if this issue persists.