Hi pearson,
This appears to be an issue with Safari and the swfobject flash embed script Awake uses to display YouTube & Vimeo videos:
http://code.google.com/p/swfobject/
Try opening up the following file:
wp-content/themes/awake/lib/classes/video.php
And replace line #'s 80 - 99 with the following:
//add_action( 'wp_head', array(&$this, 'Head') );
add_action( 'the_content', array(&$this, 'SWFObjectCalls'), 50 );
add_filter( 'widget_text', 'do_shortcode', 11 ); // Videos in the text widget
add_action( 'widget_text', array(&$this, 'SWFObjectCalls'), 50 );
// Register shortcodes
add_shortcode( 'youtube', array(&$this, 'shortcode_youtube') );
add_shortcode( 'vimeo', array(&$this, 'shortcode_vimeo') );
// Replace bundled SWFObject if it's older
if ( !is_a($wp_scripts, 'WP_Scripts') )
$wp_scripts = new WP_Scripts();
if ( !empty($wp_scripts->registered) && !empty($wp_scripts->registered['swfobject']) && !empty($wp_scripts->registered['swfobject']->ver) && version_compare( $wp_scripts->registered['swfobject']->ver, '2.2', '<' ) ) {
wp_deregister_script( 'swfobject' );
wp_enqueue_script( 'swfobject', WEBTREATS_JS .'/swfobject.js', array(), '2.2' );
} else {
//wp_enqueue_script( 'swfobject' );
}
}
This should resolve your issue, but the Awake YouTube video shortcode will no longer work. You'll have to embed your videos manually using YouTube's embed code.