diff --git a/upload/catalog/controller/product/product.php b/upload/catalog/controller/product/product.php
index 43f30de..c420a52 100644
--- a/upload/catalog/controller/product/product.php
+++ b/upload/catalog/controller/product/product.php
@@ -292,10 +292,14 @@ class ControllerProductProduct extends Controller {
$this->data['review_status'] = $this->config->get('config_review_status');
$this->data['reviews'] = sprintf($this->language->get('text_reviews'), (int)$product_info['reviews']);
$this->data['rating'] = (int)$product_info['rating'];
$this->data['description'] = html_entity_decode($product_info['description'], ENT_QUOTES, 'UTF-8');
$this->data['attribute_groups'] = $this->model_catalog_product->getProductAttributes($this->request->get['product_id']);
+ $this->data['weight'] = $this->weight->format($product_info['weight'], $product_info['weight_class_id']);
+ $this->data['length'] = $this->length->format($product_info['length'], $product_info['length_class_id']);
+ $this->data['width'] = $this->length->format($product_info['width'], $product_info['length_class_id']);
+ $this->data['height'] = $this->length->format($product_info['height'], $product_info['length_class_id']);
$this->data['products'] = array();
$results = $this->model_catalog_product->getProductRelated($this->request->get['product_id']);
diff --git a/upload/catalog/view/theme/default/template/product/product.tpl b/upload/catalog/view/theme/default/template/product/product.tpl
index 3810876..5793ff4 100644
--- a/upload/catalog/view/theme/default/template/product/product.tpl
+++ b/upload/catalog/view/theme/default/template/product/product.tpl
@@ -235,10 +235,15 @@
<?php } ?>
</div>
<div id="tab-description" class="tab-content"><?php echo $description; ?></div>
<?php if ($attribute_groups) { ?>
<div id="tab-attribute" class="tab-content">
+
+ <?php echo $weight; ?>
+ <?php echo $length; ?> x <?php echo $width; ?> x <?php echo $height; ?>
+
+
<table class="attribute">
<?php foreach ($attribute_groups as $attribute_group) { ?>
<thead>
<tr>
<td colspan="2"><?php echo $attribute_group['name']; ?></td>