-- HikaShop version -- : 5.1.2
-- Joomla version -- : 5.2
-- PHP version -- : 8.3.3
Im using product custom field Ajax file for audio mp3 file. Two problems:
1. If I enter in Format for each file field
<audio controls>
<source src="images/audiosample/{value}" type="audio/mpeg" />
Your browser does not support the audio tag.
</audio>
the "controls" audio tag is removed after saving the field.
2. How to show that field in template layout override for product?
If I use
<?php echo $this->row->mediafield; ?>
only the value is in html output.
Is there a way to show formated field?