Hi Sen,
In theory yes, you can copy addon folder from that template:
templates\rythm\sppagebuilder\addons\audio_advanced
to your website template folder:
templates\MY_THEME\sppagebuilder\addons\audio_advanced
- - -
But that addon use extra javascript and CSS that is not available in your template. For example:
- templates\rythm\js\wavesurfer-min.js
- templates\rythm\css\wavesurfer-player.css
so you have to copy & load those files in "Before < / Head >" as well - to make it work.
<link href="/templates/MY_THEME/css/wavesurfer-player.css" rel="stylesheet" type="text/css" />
<link href="/templates/MY_THEME/js/wavesurfer-min.js" rel="stylesheet" type="text/css" />
https://www.joomshaper.com/documentation/helix-framework/custom-code-css-js-meta
I don't know if that's all, but the first steps you already have. Rest is on your side.