Hello @pharefm.
To create a template that will only affect your podcast series archives and no other pages, open up your theme (or child theme) folder and make a copy of the taxonomy.php file, naming your copy taxonomy-series.php. This new file will now control the display of your podcast series archives so you can customise it as much as you like.
Not sure that answers my question.
I don’t want to style a series content,
but I want to create a page that lists all the podcast series
Hello @pharefm,
There isn’t a way out of the box to do that with the plugin currently. You could use the podcast shortcode [podcast_playlist series=”series-slug”] to display one series and use that for each series in you want to display. Or you could write a php function around
$terms = get_terms([
'taxonomy' => 'series',
'hide_empty' => false,
]);
Which would give you the series data, and then you’d need to loop through the $terms array and output the required html
$terms = get_terms(array(
'taxonomy' => 'series',
'hide_empty' => false,
));
Hope that helps move you in the right direction. Let us know if there is anything else we can do to help