Hey there. I want to add audio to my cards. But I can’t just link url. So I have 2 options. Download it and link it. Or write “[sound:” before the link. Can I get rid of that “[sound:” writing?
Same for pictures btw
1 Like
Hey!
You can do this, but you’d need to create a custom layout where you essentially put the HTML needed for audio or images and make the link dynamic.
For images this is as simple as putting:
<img src="{yourlinkfieldname}" />
For audio you could try
<audio src="{yourlinkfieldname}" controls />
The [sound:link] syntax essentially creates this on the background for you, as well as creating a play/pause button and letting it autoplay when needed and such.
1 Like