I managed to solve the problem by my own efforts. The Play button did not work on the podcast Show page, because there was no player output on this page (perhaps this is a deliberate flaw, since the “livecast-play” js class and the “data-audio-id” parameter for activating the player were not on the button initially). To solve the problem, it is necessary in the template taxonomy-podcast_show.php call the player with any podcast, after which all the buttons in the list of releases will work. Code to call:
—-
<div class=”codeless-inline-player” data-audio-id=”podcast_ID” href=”URL_TO_YOUR_PODCAST”>
<?php
$codeless_player = \Codeless_Player::get_instance();
$codeless_player->display_player_widget(array(‘is_widget’ => true, ‘colors’ => ‘dark’, ‘style’ => ‘with_image’));
?>
</div>
—-
I will add that I use this method only because on the SHOW_PODCAST taxonomy page I do not use the Elementor widget (where it is possible to insert a player) for the design of the page. On all other pages, the player and buttons work correctly.