
Originally Posted by
vera
(2) Is there a way to remove the .mp3 part? Or is it possible to type in your own track name instead of letting Media Manager use the filename as track name?
I figured this part out but still have a problem with the other part. Here's the solution for this one though:
In tpl_modules_media_manager.php (in includes\templates\dc_template\templates\), where it talks about za_clip somewhere at the bottom (don't know the exact line number because I messed with the file) right before
PHP Code:
echo '<span class="mediaClipFilename">
add this line:
PHP Code:
$za_clip['clip_filename'] = preg_replace('/.mp3/', '', $za_clip['clip_filename']);
...and it will get rid of the .mp3 extension for every song. I like answering my own questions...lol