Remove the WooThemes helper notice from the admin. Just paste in your functions.php
// Remove the WooThemes Helper notice from the admin
add_action( 'init', 'uw_remove_woothemes_helper_nag' );
function uw_remove_woothemes_helper_nag() {
remove_action( 'admin_notices', 'woothemes_updater_notice' );
}