diff --git a/htdocs/categories/categorie.php b/htdocs/categories/categorie.php
index b470e896474..4d3b980979b 100644
--- a/htdocs/categories/categorie.php
+++ b/htdocs/categories/categorie.php
@@ -248,18 +248,6 @@ else if ($_GET["id"] || $_GET["ref"])
print '
| '.$langs->trans("Label").' | '.$product->libelle.' | ';
print '
';
- // Prix
- print '| '.$langs->trans("SellingPrice").' | ';
- if ($product->price_base_type == 'TTC')
- {
- print price($product->price_ttc).' '.$langs->trans($product->price_base_type);
- }
- else
- {
- print price($product->price).' '.$langs->trans($product->price_base_type);
- }
- print ' |
';
-
// Statut
print '| '.$langs->trans("Status").' | ';
print $product->getLibStatut(2);
|