
Originally Posted by
timbreman
I have audio previews using the media manager but it displays the full name of the file such as "Preview.mp3"
How can I remove the "mp3" part of the name it's displaying?
Edit /includes/templates/NAME_OF_YOUR_TEMPLATE_FOLDER/templates/tpl_modules_media_manager.php
Change this line by adding the extra code shown: <div class="mediaTypeLink"><a href="<?php echo zen_href_link(DIR_WS_MEDIA . $za_clip['clip_filename'], '', 'NONSSL', false, true, true); ?>" target="_blank"><?php echo '<span class="mediaClipFilename">' . str_replace('.mp3', '', $za_clip['clip_filename']) . '</span>' . (!empty($za_clip['clip_type']) ? '<span class="mediaClipType"> (' . $za_clip['clip_type'] . ')</span>' : ''); ?></a></div>