diff --git sites/all/modules/fieldable_panels_panes/README.txt sites/all/modules/fieldable_panels_panes/README.txt
index 3c301cc..a62c742 100644
--- sites/all/modules/fieldable_panels_panes/README.txt
+++ sites/all/modules/fieldable_panels_panes/README.txt
@@ -7,6 +7,7 @@ will look something like this:
 function MYMODULE_entity_info_alter(&$entity_info) {
   $entity_info['fieldable_panels_pane']['bundles']['my_bundle_name'] = array(
     'label' => t('My bundle name'),
+    'pane category' => t('My category name'),
     'admin' => array(
       'path' => 'admin/structure/panels/entity/manage/%fieldable_panels_panes_type',
       'bundle argument' => 5,
diff --git sites/all/modules/fieldable_panels_panes/plugins/content_types/fieldable_panels_pane.inc sites/all/modules/fieldable_panels_panes/plugins/content_types/fieldable_panels_pane.inc
index d801c98..567c2bd 100644
--- sites/all/modules/fieldable_panels_panes/plugins/content_types/fieldable_panels_pane.inc
+++ sites/all/modules/fieldable_panels_panes/plugins/content_types/fieldable_panels_pane.inc
@@ -215,7 +215,7 @@ function _fieldable_panels_panes_default_content_type() {
     $types[$bundle] = array(
       'name' => $bundle,
       'title' => $info['label'],
-      'category' => t('Fielded panes'),
+      'category' => !empty($info['pane category']) ? $info['pane category'] : t('Fielded panes'),
       'description' => t('Create a new custom entity.'),
       'all contexts' => TRUE,
       'bundle' => $bundle,
