To allow media-manager components to be displayed on regular product-info products, copy the media-manager code from the music template to the general product template:
Copy this FROM:
/includes/templates/template_default/templates/tpl_product_music_info_display.php```
<!--bof Media Manager -->
<div id="mediaManager" class="productMusic"><?php
/**
* display the products related media clips
*/
require($template->get_template_dir('/tpl_modules_media_manager.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_media_manager.php'); ?>
<br class="clearBoth" /></div>
<!--eof Media Manager -->
<br class="clearBoth" />
```and add it to your product template:
/includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php
perhaps above the line saying"<!--bof Additional Product Images -->", like this:
<!--bof Media Manager -->
<div id="mediaManager" class="productMusic"><?php
/**
* display the products related media clips
*/
require($template->get_template_dir('/tpl_modules_media_manager.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_media_manager.php'); ?>
<br class="clearBoth" /></div>
<!--eof Media Manager -->
<br class="clearBoth" />
<!--bof Additional Product Images -->