
Best Answer eric, 22 February 2013 - 04:43 PM
The problem is that TubePress's "normal" player location depends on having the large title (the text above the currently-loaded video player) exist in the DOM. I would edit your copy of tubepress-content/themes/theme1/players/normal.tpl.php to make it look like this:
<div class="tubepress_normal_embedded_wrapper" style="width: <?php echo ${tubepress_api_const_template_Variable::EMBEDDED_WIDTH}; ?>px"> <div id="tubepress_embedded_title_<?php echo ${tubepress_api_const_template_Variable::GALLERY_ID}; ?>" class="tubepress_embedded_title" style="display:none"> <?php echo ${tubepress_api_const_template_Variable::VIDEO}->getTitle(); ?> </div> <div id="tubepress_embedded_object_<?php echo ${tubepress_api_const_template_Variable::GALLERY_ID}; ?>"> <?php echo ${tubepress_api_const_template_Variable::EMBEDDED_SOURCE}; ?> </div> </div>
The style="display:none" will keep the title hidden from view and should keep TubePress happy. Give that a try?
Go to the full post