diff --git a/modules/customer/includes/views/commerce_customer_ui.views_default.inc b/modules/customer/includes/views/commerce_customer_ui.views_default.inc
index b549deb..0bff5d0 100644
--- a/modules/customer/includes/views/commerce_customer_ui.views_default.inc
+++ b/modules/customer/includes/views/commerce_customer_ui.views_default.inc
@@ -86,14 +86,15 @@ function commerce_customer_ui_views_default_views() {
   );
   $handler->display->display_options['style_options']['override'] = 1;
   $handler->display->display_options['style_options']['sticky'] = 0;
+  $handler->display->display_options['style_options']['empty_table'] = 1;
   $handler->display->display_options['style_options']['order'] = 'desc';
   /* No results behavior: Global: Text area */
   $handler->display->display_options['empty']['area']['id'] = 'area';
   $handler->display->display_options['empty']['area']['table'] = 'views';
   $handler->display->display_options['empty']['area']['field'] = 'area';
   $handler->display->display_options['empty']['area']['empty'] = FALSE;
-  $handler->display->display_options['empty']['area']['content'] = 'No customer profiles have been created yet.';
-  $handler->display->display_options['empty']['area']['format'] = 'plain_text';
+  $handler->display->display_options['empty']['area']['content'] = 'No customer profiles have been created yet. <a href="/admin/commerce/customer-profiles/add">Add customer profile</a>.';
+  $handler->display->display_options['empty']['area']['format'] = 'filtered_html';
   /* Relationship: Commerce Customer Profile: Owner */
   $handler->display->display_options['relationships']['uid']['id'] = 'uid';
   $handler->display->display_options['relationships']['uid']['table'] = 'commerce_customer_profile';
diff --git a/modules/order/includes/views/commerce_order_ui.views_default.inc b/modules/order/includes/views/commerce_order_ui.views_default.inc
index 68188a8..887d823 100644
--- a/modules/order/includes/views/commerce_order_ui.views_default.inc
+++ b/modules/order/includes/views/commerce_order_ui.views_default.inc
@@ -95,7 +95,7 @@ function commerce_order_ui_views_default_views() {
   );
   $handler->display->display_options['style_options']['override'] = 1;
   $handler->display->display_options['style_options']['sticky'] = 0;
-  $handler->display->display_options['style_options']['empty_table'] = 0;
+  $handler->display->display_options['style_options']['empty_table'] = 1;
   /* Header: Global: View order form */
   $handler->display->display_options['header']['view_order_form']['id'] = 'view_order_form';
   $handler->display->display_options['header']['view_order_form']['table'] = 'views';
@@ -105,8 +105,8 @@ function commerce_order_ui_views_default_views() {
   $handler->display->display_options['empty']['text']['table'] = 'views';
   $handler->display->display_options['empty']['text']['field'] = 'area';
   $handler->display->display_options['empty']['text']['empty'] = FALSE;
-  $handler->display->display_options['empty']['text']['content'] = 'No orders have been created yet.';
-  $handler->display->display_options['empty']['text']['format'] = 'plain_text';
+  $handler->display->display_options['empty']['text']['content'] = 'No orders have been created yet. <a href="/admin/commerce/orders/add">Add order</a>.';
+  $handler->display->display_options['empty']['text']['format'] = 'filtered_html';
   /* Relationship: Commerce Order: Owner */
   $handler->display->display_options['relationships']['uid']['id'] = 'uid';
   $handler->display->display_options['relationships']['uid']['table'] = 'commerce_order';
diff --git a/modules/product/includes/views/commerce_product_ui.views_default.inc b/modules/product/includes/views/commerce_product_ui.views_default.inc
index 76b2153..474f443 100644
--- a/modules/product/includes/views/commerce_product_ui.views_default.inc
+++ b/modules/product/includes/views/commerce_product_ui.views_default.inc
@@ -90,14 +90,14 @@ function commerce_product_ui_views_default_views() {
   );
   $handler->display->display_options['style_options']['override'] = 1;
   $handler->display->display_options['style_options']['sticky'] = 0;
-  $handler->display->display_options['style_options']['empty_table'] = 0;
+  $handler->display->display_options['style_options']['empty_table'] = 1;
   /* No results behavior: Global: Text area */
   $handler->display->display_options['empty']['text']['id'] = 'text';
   $handler->display->display_options['empty']['text']['table'] = 'views';
   $handler->display->display_options['empty']['text']['field'] = 'area';
   $handler->display->display_options['empty']['text']['empty'] = FALSE;
-  $handler->display->display_options['empty']['text']['content'] = 'No products have been created yet.';
-  $handler->display->display_options['empty']['text']['format'] = 'plain_text';
+  $handler->display->display_options['empty']['text']['content'] = 'No products have been created yet. <a href="/admin/commerce/products/add">Add product</a>.';
+  $handler->display->display_options['empty']['text']['format'] = 'filtered_html';
   /* Field: Commerce Product: SKU */
   $handler->display->display_options['fields']['sku']['id'] = 'sku';
   $handler->display->display_options['fields']['sku']['table'] = 'commerce_product';
