Hi all,
I have a client who needs audio on their page, I have used the HTML5 Audio tag with fallbacks handled via JS etc.. (I strip all JS from pagelime view in editor mode to avoid any crazyness, so its just a static <audio> tag)
The issue is pagelime strips the <audio> tag from the page on publish??
There are multiple audio files on the one page and they are nested within repeating regions, the <audio> tag itself is nested within a <div> like so;
<div class="audio_player" id="ebab18">
<audio id="player9" src="audio/test.mp3" type="audio/mp3" controls="controls"></audio>
</div>
When I publish from the pagelime backend, the audio tag is completely removed? why is it even touching this code? so the result on save is this;
<div class="audio_player" id="ebab18"></div>
Now ideally I could make the <div> editable and just change the audio file path in HTML view, but this does not seem possible? so I thought ok I wont make that editable and the client will just have to use "edit code" for the whole page to adjust the file path, but it seems now I cant even do that?
Why is pagelime touching this tag? can you please let me know a workaround to this or add support for <audio> and <video> tags? i'm sure others will need this functionality also.
Love the work guys hope we can resolve this quickly :)