Podigee Player with Chapters?

Hi beloved Podlove-Community,

thanks for having me.
I’ve got this problem:
I’m using Podlove Publisher on my wordpress and podigee to create my podcasts. Now I want to use the podigee player, who is included in Podlove. The only thing I can’t to make work, is to display the chapters I did in podigee.
The nicest thing would be, if I could config my player via the podigee website inferface, just hand over the config-url and podlover would use that one. In practice, I archieved that by manipulating the html5printer.php for the podigee player module.

if ($style == 'inline') { // inline players are not embeddable
		return '
		<script>window.' . $this->config_var_name() . ' = ' . json_encode(self::config($this->episode, $context)) . '</script>
		<script class="podigee-podcast-player" src="' . $src . '" data-configuration="https://inklusions-podcast.podigee.io/embed?context=external"></script>';
	} else {
		return '<script class="podigee-podcast-player" src="' . $src . '" data-configuration="https://inklusions-podcast.podigee.io/embed?context=external"></script>';
	}

But then I have the same podcast in every episode, because the ID gets not transfered.
So is their a solution or can I request such an feature?

Thanks a lot!