diff --git a/salsa_entity.module b/salsa_entity.module
index 97bc4c9..c7418ec 100644
--- a/salsa_entity.module
+++ b/salsa_entity.module
@@ -506,7 +512,7 @@ function salsa_entity_supporter_fieldset(&$form, &$form_state, $form_id) {
         $form['Supporter_Info'][$field]['#options'] = country_get_list();
         $form['Supporter_Info'][$field]['#empty_option'] = t('- Choose country -');
       }
-      else if (($supporter_info[$field]['salsa_type'] == 'text') || ($supporter_info[$field]['salsa_type'] == 'blob')) {
+      else if (($supporter_info[$field]['salsa_type'] == 'text') || ($supporter_info[$field]['salsa_type'] == 'blob') || ($supporter_info[$field]['salsa_type'] == 'mediumtext')) {
         $form['Supporter_Info'][$field]['#type'] = 'textarea';
       }
       else {
diff --git a/salsa_profile/salsa_profile.module b/salsa_profile/salsa_profile.module
index a273028..d887754 100644
--- a/salsa_profile/salsa_profile.module
+++ b/salsa_profile/salsa_profile.module
@@ -251,7 +251,7 @@ function salsa_profile_custom_fields(&$form, &$form_state) {
         '#default_value' => $form_state['supporter']->{$field->name},
       );
 
-      if ($field->type == 'text' || $field->type == 'mediumtext') {
+      if ($field->type == 'text' || $field->type == 'mediumtext' || $field->type == 'blob') {
         $form['other_information'][$field->name] += array(
           '#type' => 'textarea',
         );
