diff --git a/includes/ooyala.pages.inc b/includes/ooyala.pages.inc
index 3f0611d..abedf8c 100644
--- a/includes/ooyala.pages.inc
+++ b/includes/ooyala.pages.inc
@@ -103,7 +103,7 @@ function ooyala_settings_form($form, $form_state) {
   if (empty($options)) {
     $form['ooyala_primary_content_type']['#disabled'] = TRUE;
     $form['ooyala_primary_content_type']['#options'][''] = t('No available types');
-    $form['ooyala_primary_content_type']['#description'] = t('There are currently no content types that contain an Ooyala field. Add an Ooyala field under <em>Manage fields</em> from the <a href="!url">Content type configuration</a>.', array('!url' => url('admin/structure/types')));
+    $form['ooyala_primary_content_type']['#description'] = t('This content type will be used as the default for the <a href="!url">batch Backlot video import</a>.', array('!url' => url('admin/content/ooyala/import'))) . ' ' . t('There are currently no content types that contain an Ooyala field. Add an Ooyala field under <em>Manage fields</em> from the <a href="!url">Content type configuration</a>.', array('!url' => url('admin/structure/types')));
   }
 
   if (module_exists('colorbox')) {
@@ -194,7 +194,7 @@ function ooyala_settings_messages() {
     $details = array();
     ooyala_api_video_query(array('limit' => 1), $details);
     if ($details) {
-      drupal_set_message(t('The Ooyala servers have been contacted and your Partner and Secret code have been confirmed.'));
+      drupal_set_message(t('The Ooyala servers have been contacted and your Partner and Secret code have been confirmed.'), 'status', FALSE);
     }
     else {
       drupal_set_message(t('Check that your Partner and Secret code values are correct. These can be obtained from your <a href="https://backlot.ooyala.com/backlot/web">Ooyala Backlot account</a> under the "Account" => "Developers" sub-tab.'), 'error');
diff --git a/ooyala.module b/ooyala.module
index 7713cc4..9b1cdcb 100755
--- a/ooyala.module
+++ b/ooyala.module
@@ -747,7 +747,7 @@ function ooyala_type_names() {
     foreach ($content_types as $type_name => $content_type) {
       $fields = field_info_instances('node', $type_name);
       foreach ($fields as $field) {
-        if ($field['widget']['module'] == 'ooyala') {
+        if (strpos($field['widget']['type'], 'ooyala') !== FALSE) {
           $ooyala_types[$type_name] = ucfirst($field['bundle']);
           continue;
         }
