Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Govi,

    It is a chrome issue as they have decided to change something again which is making it render differently. I managed to find a work around in the plugin file audio-tube.php .

    On line 200 the $retina variable pulls in the flash code. I replaced this to pull in via an iframe instead so my code now looks like this :-

    $ritorna = <<<HTML
    	<div class="chrome-disp" style="position:relative; width:100%; height:25px;overflow:hidden;">
    	<div style="position:absolute;top:-277px;left:-5px;width:100%">
    	<iframe width="100%" height="300" src="http://www.{$yt_cookie}.com/v/{$id}?version=2&hl=en{$yt_auto}{$yt_loop}{$yt_js}{$yt_theme}{$yt_start}"></iframe>
    	</div>
    	</div>
    HTML;
    
    	return $ritorna;

    Hope this helps

    Cheers
    J

    That worked! Yay! Thanks for taking the time to post the workaround!

    <div class=”chrome-disp” style=”position:relative; width:100%; height:25px;overflow:hidden;”>
    <div style=”position:absolute;top:-277px;left:-5px;width:100%”>
    <iframe width=”100%” height=”300″ src=”http://www.{$yt_cookie}.com/v/{$id}?version=2&hl=en{$yt_auto}{$yt_loop}{$yt_js}{$yt_theme}{$yt_start}”></iframe>
    </div>
    </div>

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Audio Tube not Displaying’ is closed to new replies.