diff --git a/includes/views/commerce_backoffice_product.views.inc b/includes/views/commerce_backoffice_product.views.inc
index 7d495d1..47ba0fd 100644
--- a/includes/views/commerce_backoffice_product.views.inc
+++ b/includes/views/commerce_backoffice_product.views.inc
@@ -23,6 +23,7 @@ function commerce_backoffice_product_views_data_alter(&$data) {
     ),
   );
   $data['commerce_product']['quick_edit_form'] = array(
+    'real field' => 'product_id',
     'field' => array(
       'title' => t('Quick Edit Form'),
       'help' => t('Display a form for editing the price and status of a variation.'),
diff --git a/includes/views/handlers/commerce_backoffice_handler_field_term_entity_tid.inc b/includes/views/handlers/commerce_backoffice_handler_field_term_entity_tid.inc
index bccc351..35bf127 100644
--- a/includes/views/handlers/commerce_backoffice_handler_field_term_entity_tid.inc
+++ b/includes/views/handlers/commerce_backoffice_handler_field_term_entity_tid.inc
@@ -137,7 +137,7 @@ class commerce_backoffice_handler_field_term_entity_tid extends views_handler_fi
   }
 
   function get_items($values) {
-    return $values->{'taxonomy_term_' . $this->options['id']};
+    return isset($values->{'taxonomy_term_' . $this->options['id']}) ? $values->{'taxonomy_term_' . $this->options['id']} : array();
   }
 
   function render_item($count, $item) {
diff --git a/includes/views/handlers/commerce_backoffice_product_handler_field_product_quick_edit_form.inc b/includes/views/handlers/commerce_backoffice_product_handler_field_product_quick_edit_form.inc
index 003040f..8aadcb9 100644
--- a/includes/views/handlers/commerce_backoffice_product_handler_field_product_quick_edit_form.inc
+++ b/includes/views/handlers/commerce_backoffice_product_handler_field_product_quick_edit_form.inc
@@ -6,7 +6,6 @@
  * @ingroup views_field_handlers
  */
 class commerce_backoffice_product_handler_field_product_quick_edit_form extends views_handler_field {
-  function query() {}
 
   function render($values) {
     // Get the entity matching this row.
