Jump to content

Ajouter une colonne "Poids" sur l'admin catégorie


Recommended Posts

Bonjour

Pour une meilleure visiblité du poids des produits, je souhaiterais ajouter une colonne "Poids" sur l'admin de chaque catégorie

 

Actuellement on a çela :

Image     Référence     Produit     Stock     Prix final     Position     Statut     Actions

 

Je souhaiterais cela :

Image     Référence     Produit     Poids     Stock     Prix final     Position     Statut     Actions

 

Est ce réalisable et comment ?

Merci

Edited by Klaus Boutik (see edit history)
Link to comment
Share on other sites

  • 3 weeks later...
  • 1 year later...
  • 5 months later...

Si cela peut aider quelqu'un. Je réponds car j'ai cherché aussi à ajouter le champs poids à la liste produits au niveau de l'admin.

En fait c'est tout simple, il faut ajouter au fichier " nom_boutique/controllers/admin/AdminProductsController.php":

 

$this->fields_list['weight'] = array(
'title' => $this->l('weight'),
'align' => 'left',
);
 
après par exemple le champs prix:
$this->fields_list['price_final'] = array(
'title' => $this->l('Final price'),
'type' => 'price',
'align' => 'text-right',
'havingFilter' => true,
'orderby' => false,
'search' => false
);
 
Guénaël
Link to comment
Share on other sites

  • 2 years later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...